Changes between Version 3 and Version 4 of StartModWorkflow


Ignore:
Timestamp:
May 6, 2013, 3:16:49 PM (9 years ago)
Author:
Beman Dawes
Comment:

Add Deleting merged branches (Dave Abrahams)

Legend:

Unmodified
Added
Removed
Modified
  • StartModWorkflow

    v3 v4  
    1313The Git Flow model diagram is available as a [http://github.com/downloads/nvie/gitflow/Git-branching-model.pdf PDF file] - print it out and hang it on your wall!
    1414
    15 For those who use Git from the command line, [https://github.com/nvie/gitflow git-flow command line tools] are available to automate common operations. See [https://github.com/nvie/gitflow/wiki git-flow wiki] for more information. 
     15For those who use Git from the command line, [https://github.com/nvie/gitflow git-flow command line tools] are available to automate common operations. See [https://github.com/nvie/gitflow/wiki git-flow wiki] for more information.
     16
     17== Aside: Deleting merged branches ==
     18
     19The usual culture with Git is to delete feature branch references as soon as
     20they are merged to some other branch.
     21This approach is also recommended for Boost developers.
     22After all, the merged-to branch
     23keeps the commit history alive and there's no longer any need to keep
     24the old label around.  If you delete a branch without merging it, of
     25course, any commit history exclusively referenced by that branch is
     26lost.
     27