- 
      
- 
        Save Whitespace/3505099 to your computer and use it in GitHub Desktop. 
    Git branch cleanup
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | git checkout master | |
| git fetch | |
| git remote prune origin | |
| git branch --merged master | grep -v 'master$' | xargs git branch -d | |
| echo "The following remote branches are fully merged and will be removed:" | |
| git branch -r --merged master | sed 's/ *origin\///' | grep -v 'master$' | |
| git branch -r --merged master | sed 's/ *origin\///' | grep -v 'master$' | xargs -I% git push origin :% | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment