How to remove local branches that aren't on remote?
This is the perfect method when you want to synchronize your local repository branches with your remote branches.
Sync your branches
You just need to use the option -p or --prune during the fetch command.
git fetch --prune
-p, --prune
After fetchin...
blog.rafaelcg.com1 min read