git copy remote branch
Copy remote master branch to remote QA branch in git
|
1 2 |
git push origin --delete QA git push origin master:QA |
Copy remote master branch to remote production branch in git
|
1 2 |
git push origin --delete production git push origin master:production |