Try and flush out all the commands devs would need.
[git-central.git] / scripts / gc-push
1 #!/bin/sh
2
3 branch_name=$(git-symbolic-ref HEAD)
4
5 git push origin $branch_name
6 if [[ $? -ne 0 ]] ; then
7     exit $?
8 fi
9
10 # ...tags...
11