Difference between revisions of "Workflow of contributing code"
From KlayGE
Gongminmin (Talk | contribs) m (Gongminmin moved page Engineering workflow to Contributing workflow without leaving a redirect) |
Gongminmin (Talk | contribs) |
||
Line 5: | Line 5: | ||
# Amend your commit. Prefer merge all your commits into one for one feature or bug fix. (git reset --soft "HEAD^", git commit --amend) | # Amend your commit. Prefer merge all your commits into one for one feature or bug fix. (git reset --soft "HEAD^", git commit --amend) | ||
− | [[zh: | + | [[zh:贡献的工作流]] |
Revision as of 20:35, 24 March 2015
Guidelines
- Work on your branch. For each feature or bug fix, it should create a branch before submitting a patch or pull request.
- Always working on latest master branch. Use "git pull --rebase" to rewind your changes on top of master.
- Amend your commit. Prefer merge all your commits into one for one feature or bug fix. (git reset --soft "HEAD^", git commit --amend)