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