2
1
Fork 0
mirror of https://gitlab.com/koha-community/release-tools.git synced 2024-10-28 08:31:14 +00:00

Adding a simple shell script to handle pushing; this is very custom to my RMaint setup... modify to taste

This commit is contained in:
Chris Nighswonger 2011-12-04 20:56:59 -05:00
parent 0f355b4884
commit 20ef6fd64e

8
push.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
BRANCH=$1
git push origin $BRANCH
pushd ~/koha.3.2.r_maint
git push origin $BRANCH
popd