Answers for "create git branch from master command line and push"

7

push a new branch

git push -u origin <branch-name>
Posted by: Guest on May-24-2020
-1

git push in a new branch

git checkout -b <branch>
git add .
git commit -m "comment"
git push -u origin <branch>
Posted by: Guest on January-24-2021

Code answers related to "create git branch from master command line and push"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language