Changes between Version 54 and Version 55 of DeveloperGuidelines/Git
- Timestamp:
- 05/18/12 05:57:30 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v54 v55 177 177 If you have made changes to one branch & wish to backport them to another branch, then this is done most easily using a Patch: 178 178 * http://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git 179 180 === Story Branches === 181 The [http://blog.hasmanythrough.com/2008/12/18/agile-git-and-the-story-branch-pattern Story Branch] pattern allows pushing interim work to GitHub for review & also allowing contributing quick fixes to Trunk without needing to complete the interim work: 182 {{{ 183 git checkout -b <mystory> 184 185 git commit -a 186 ... 187 git commit -a 188 189 # Quick review of code (no test code left in, etc) 190 git diff master...HEAD 191 }}} 192 https://docs.google.com/drawings/d/1Vhvm1EmqWOVNZkZsiJ0MLLpdTl6H_ya263Tdb2HK1N0/edit 179 193 == Developer Configuration == 180 194 {{{