Git

from blog Roman Imankulov, | ↗ original
Delete merged branches Leftovers from merged branches are distracting. Too many of them make commands like git branch -l useless. Here are some commands to clean them up. Get the list of all branches that have been merged into the current branch. git branch --merged Delete all branches that have been merged into the current branch. We exclude...