Answers for "how to push a newly created branch to git hub"

-1

how to push newly created branch in git bash

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

how to push newly created branch in git bash

git checkout -b my_new_branch
git commit
Posted by: Guest on January-27-2022

Code answers related to "how to push a newly created branch to git hub"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language