scripts

Random scripts
git clone git://git.margiolis.net/scripts.git
Log | Files | Refs | README | LICENSE

push (114B)


      1 #!/bin/sh
      2 
      3 branch=$(git branch --show-current)
      4 for remote in $(git remote); do
      5 	git push ${remote} ${branch}
      6 done