git copy remote branch

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

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.