Added opensync 0.4x to "config all" script
[barry.git] / git-push-all.sh
blobd0b3e8512292be67081ccb653d787798fbc6cd90
1 #!/bin/sh
3 PATCH_CVS="$(dirname "$0")/git-patch-cvs.sh"
5 set -e
7 $PATCH_CVS origin master ../barry3
8 $PATCH_CVS origin master ../external/barry
10 echo "Press enter when ready for git push..."
11 read
13 # Note: This push only updates non-CVS branches, and master.
14 # To push other CVS branches, do it manually, with git-patch-cvs.sh
16 git push --tags origin master scripts pristine-tar
18 echo "Press enter when ready for git push sourceforge.net..."
19 read
20 git push sourceforge.net master scripts pristine-tar
23 echo "Press enter when ready for git push repo.or.cz..."
24 read
26 # Now update repo.or.cz. We can be more liberal here, since repo.or.cz
27 # _should_ contain everything that can be considered public.
29 # The idea is to put everything out there, in case someone wants
30 # to work on it, or send patches.
32 # "all" and "tags" have to be done separately for some reason
34 #git push --all repo.or.cz
35 #git push --tags repo.or.cz master i18n
36 git push repo.or.cz master scripts pristine-tar
38 echo "================= NOTE: if you want to push a tag, do it manually"
39 echo "================= for both repo.or.cz and sourceforge.net!"
40 echo "Example: git push repo.or.cz barry-0.13"