release.sh: set up git remotes appropriately

next
Michael Stapelberg 2015-03-29 19:22:29 +02:00
parent 3360ba7212
commit fe8003ef4f
1 changed files with 11 additions and 6 deletions

View File

@ -82,6 +82,12 @@ else
git merge --no-ff next -m "Merge branch 'next' into master" git merge --no-ff next -m "Merge branch 'next' into master"
fi fi
git remote remove origin
git remote add origin git@github.com:i3/i3.git
git config --add remote.origin.push "+refs/tags/*:refs/tags/*"
git config --add remote.origin.push "+refs/heads/next:refs/heads/next"
git config --add remote.origin.push "+refs/heads/master:refs/heads/master"
################################################################################ ################################################################################
# Section 2: Debian packaging # Section 2: Debian packaging
################################################################################ ################################################################################
@ -164,6 +170,9 @@ done
git commit -a -m "update docs for ${RELEASE_VERSION}" git commit -a -m "update docs for ${RELEASE_VERSION}"
git remote remove origin
git remote add origin git@github.com:i3/i3.github.io.git
################################################################################ ################################################################################
# Section 4: final push instructions # Section 4: final push instructions
################################################################################ ################################################################################
@ -174,14 +183,10 @@ echo "When satisfied, run:"
echo " cd ${TMPDIR}/i3" echo " cd ${TMPDIR}/i3"
echo " git checkout next" echo " git checkout next"
echo " vi debian/changelog" echo " vi debian/changelog"
# TODO: can we just set up the remote spec properly? echo " git push"
echo " git push git@github.com:i3/i3 next"
echo " git push git@github.com:i3/i3 master"
echo " git push git@github.com:i3/i3 --tags"
echo "" echo ""
echo " cd ${TMPDIR}/i3.github.io" echo " cd ${TMPDIR}/i3.github.io"
# TODO: can we just set up the remote spec properly? echo " git push"
echo " git push git@github.com:i3/i3.github.io master"
echo "" echo ""
echo " cd ${TMPDIR}/debian" echo " cd ${TMPDIR}/debian"
echo " dput *.changes" echo " dput *.changes"