What to do with branch after merge

99封情书 提交于 2019-11-28 02:37:57

After the merge, it's safe to delete the branch:

git branch -d branch1

Additionally, git will warn you (and refuse to delete the branch) if it thinks you didn't fully merge it yet. If you forcefully delete a branch (with git branch -D) which is not completely merged yet, you have to do some tricks to get the unmerged commits back though (see below).

There are some reasons to keep a branch around though. For example, if it's a feature branch, you may want to be able to do bugfixes on that feature still inside that branch.

If you also want to delete the branch on a remote host, you can do:

git push origin :branch1

This will forcefully delete the branch on the remote (this will not affect already checked-out repositiories though and won't prevent anyone with push access to re-push/create it).


git reflog shows the recently checked out revisions. Any branch you've had checked out in the recent repository history will also show up there. Aside from that, git fsck will be the tool of choice at any case of commit-loss in git.

All my branches are named in the form of Fix/fix-<somedescription> or Ftr/ftr-<somedescription> etc. Using Tower as my git front end, it neatly organizes all the Ftr/, Fix/, Test/ etc. into folders. Once I am done with a branch, I rename them to Done/...-<description> That way they are still there (which can be handy to provide history) and I can always go back knowing what it was (feature, fix, test etc.)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!