More explicit use of git pushing in rake publish

This commit is contained in:
Ryan McGeary 2010-06-21 15:13:59 -04:00
parent 57fd61b23d
commit d07fef295e

View file

@ -6,7 +6,8 @@ desc 'Publish "marketing" docs'
task :publish do
sh("git rebase master gh-pages")
sh("git checkout master")
sh("git push")
sh("git push origin master")
sh("git push origin gh-pages")
sh("git push --tags")
end