Answers for "git prune branch locally"

3

git prune local branches

# for pruning of local branches that have been deleted on remote
git remote prune origin

# for checking local branches and if they can be deleted
# because they have been merged into another branch already
git branch --merged >/tmp/merged-branches && 
  vi /tmp/merged-branches && xargs git branch -d </tmp/merged-branches
Posted by: Guest on September-30-2020
1

git prune remote branches

git remote prune origin
Posted by: Guest on September-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language