git copy remote branch

January 11, 2013

git copy remote branch

Copy remote master branch to remote QA branch in git

git push origin --delete QA
git push origin master:QA

Copy remote master branch to remote production branch in git

git push origin --delete production
git push origin master:production