Is there an option to delete a branch with TortoiseGit?
I found a solution for the commandline. Is there an implementation in TortoiseGit?
Is there an option to delete a branch with TortoiseGit?
I found a solution for the commandline. Is there an implementation in TortoiseGit?
Open log dialog first, there are ways to delete branch(es):
Right click on branch
Right click on commit
In Browse references dialog
Delete merged branches
Delete those remote-tracking branches which its remote branches are not exist on remote
[Note] if you want to prune non-exist branches each time you perform fetch, you can do these:
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 theBrowse refs
dialog.In the
Browse refs
dialog we can right click on the local branch and choose to delete it.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.
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"