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.

Revisions

  1. leoapost created this gist Dec 17, 2012.
    3 changes: 3 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    # 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;