Answers for "how auto master branch to remote repository"

1

pull branch from remote to new local branch

git branch --track <branch-name> origin/<branch-name>
Posted by: Guest on July-06-2021
3

Push your branch up to the remote.

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

Code answers related to "how auto master branch to remote repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language