How do I delete a Git branch with TortoiseGit

2019-01-29 23:44发布

Is there an option to delete a branch with TortoiseGit?

I found a solution for the commandline. Is there an implementation in TortoiseGit?

3条回答
何必那么认真
2楼-- · 2019-01-29 23:53

Open log dialog first, there are ways to delete branch(es):

  1. Right click on branch
    enter image description here

  2. Right click on commit
    enter image description here

  3. In Browse references dialog
    enter image description here

  4. Delete merged branches
    enter image description here

  5. Delete those remote-tracking branches which its remote branches are not exist on remote
    enter image description here
    [Note] if you want to prune non-exist branches each time you perform fetch, you can do these:
    enter image description here

查看更多
老娘就宠你
3楼-- · 2019-01-29 23:57

You should read this article: Remote branches with TortoiseGit

According to this blog post:

...remove the local branch by first opening up the Checkout/Switch dialog to get at the Browse refs dialog.

enter image description here

In the Browse refs dialog we can right click on the local branch and choose to delete it.

enter image description here

To delete a remote branch we can do the same thing, but instead of right clicking on our local branch we expand the remotes tree in the left part of the dialog and then locate the remote branch.

enter image description here

查看更多
Root(大扎)
4楼-- · 2019-01-29 23:57

You can Shift + Right Click on the cloned repository and choose Browse References from TortoiseGit submenu:

Click on remotes in the left tree view, and then right click the branch you wish to remove and click on Delete remote branch.

You can also get rid of the "shift"+right click: Go to TortoiseGit settings -> "Set extended context menu" and uncheck "Browse References"

查看更多
登录 后发表回答