Answers for "git push to different remote branch"

2

push to specific remote branch

git push origin localBranchName:remoteBranchName
Posted by: Guest on June-21-2021
1

push local branch changes to remote branch

git push -u origin localBranch:remoteBranchToBeCreated
Posted by: Guest on November-04-2020
1

Push your branch up to the remote.

$ git push <remote> <branch>
Posted by: Guest on September-11-2020
-2

git push to different remote branch

# To remove the exist origin
git remote remove origin

# And then add new origin master URL
git remote set-url origin git://new.url.here

Follow me on GITHUB/bilalahmedkhatri
Posted by: Guest on October-27-2020

Code answers related to "git push to different remote branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language