Workflow of contributing code

From KlayGE
Revision as of 21:36, 24 March 2015 by Gongminmin (Talk | contribs)

Jump to: navigation, search

Guidelines

  1. Work on your branch. For each feature or bug fix, it should create a branch before submitting a patch or pull request.
  2. Always working on latest master branch. Use "git pull --rebase" to rewind your changes on top of master.
  3. Amend your commit. Prefer merge all your commits into one for one feature or bug fix. (git reset --soft "HEAD^", git commit --amend)