| 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. |
| | 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. |
| | 16 | |
| | 17 | == Aside: Deleting merged branches == |
| | 18 | |
| | 19 | The usual culture with Git is to delete feature branch references as soon as |
| | 20 | they are merged to some other branch. |
| | 21 | This approach is also recommended for Boost developers. |
| | 22 | After all, the merged-to branch |
| | 23 | keeps the commit history alive and there's no longer any need to keep |
| | 24 | the old label around. If you delete a branch without merging it, of |
| | 25 | course, any commit history exclusively referenced by that branch is |
| | 26 | lost. |
| | 27 | |