Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //Clear the stale remote branches
  2. git remote prune origin
  3.  
  4. //Clear local branches that have no matching remote branch
  5. git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement