Changes between Version 78 and Version 79 of DeveloperGuidelines/Git
- Timestamp:
- 01/02/14 09:32:21 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v78 v79 281 281 282 282 === Story Branches === 283 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:283 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 disturbing your longer-term work. (The linked story branch description uses a Ruby on Rails (RoR) project as an example, so you'll see RoR commands in the post, such as {{{rake}}} or {{{rake db:migrate}}}. In most cases where an RoR command is shown, an appropriate Eden substitute will be to update from Trunk and run tests.) 284 284 {{{ 285 285 git checkout -b <mystory>