Skip to content

Instantly share code, notes, and snippets.

@leoapost
Created December 17, 2012 13:55
Show Gist options
  • Save leoapost/4318441 to your computer and use it in GitHub Desktop.
Save leoapost/4318441 to your computer and use it in GitHub Desktop.
Delete all remote branches, except master
# Replace REMOTE_NAME with your remote name (e.g. origin)
git branch -r | grep REMOTE_NAME/ | grep -v 'master$' | grep -v HEAD| cut -d/ -f2 | while read line; do git push REMOTE_NAME :$line; done;
@Moriarty16
Copy link

Perfect idea. Save a lot of work.
And to be cautious, perhaps do git branch -r | grep REMOTE_NAME/ | grep -v 'master$' | grep -v HEAD| cut -d/ -f2 | while read line; do echo $line; done; before delete.

@apoorv-mishra
Copy link

Might want to try git branch -r | grep origin/ | grep -v 'master$' | grep -v HEAD | cut -d/ -f2 | parallel git push origin --delete, which is faster. Refer https://www.gnu.org/software/parallel/.

@kirtangajjar
Copy link

@leoapost This command does not work for branches with / in its name. To fix this, you need to replace cut -d/ -f2 with cut -d/ -f2-

git branch -r | grep REMOTE_NAME/ | grep -v 'master$' | grep -v HEAD| cut -d/ -f2- | while read line; do git push REMOTE_NAME :$line; done;

@xhliu
Copy link

xhliu commented Jan 7, 2019

Works gr8, thanks 4 sharing.

@vinayf
Copy link

vinayf commented Feb 21, 2019

Sweeeeet, thanks for sharing!

@VishwasShashidhar
Copy link

This is great! Thank you for sharing!

@mohshannan
Copy link

Thanks for sharing

@marnee01
Copy link

Thanks to the OP and others who added additional info. Very helpful!

@jmsalcido
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment