Added script to sync entrouvert and collective repositories

This commit is contained in:
Vincent Fretin 2013-03-17 12:06:33 +01:00
parent 0eac4f5901
commit 6b2baeb79f
1 changed files with 9 additions and 0 deletions

9
sync.sh Executable file
View File

@ -0,0 +1,9 @@
cd src
for pkg in collective.contact.core collective.contact.widget collective.dms.basecontent collective.dms.batchimport collective.dms.mailcontent collective.dms.thesaurus; do
cd $pkg
git remote add entrouvert git+ssh://git@repos.entrouvert.org/$pkg.git
git pull; git pull entrouvert master; git push; git push entrouvert master
cd -
done