How to remove deleted branch names from git suggestions? It’s as simple as that:
git fetch --prune --all
Or (thanks to @mus) you can add this to your ~/.gitconfig
file:
[fetch]
prune = true
Plus after doing this you’ll know how clean is your repo :)
Comments
Empty! You must sign in to add comments.