Answers for "git push specific branch"

2

push to specific remote branch

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

git push specific branch

# In some cases, you may want to push your changes 
# to another branch on the remote repository.
#
# In order to push your branch to another remote branch, 
# use the “git push” command and specify the remote name, 
# the name of your local branch as the name of the remote branch.

$ git push <remote> <local_branch>:<remote_name>
Posted by: Guest on October-13-2020
1

git push specific branch

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language