Answers for "how to create new branch and push to git"

39

git push to branch

# If its your first push
git push -u origin BRANCH

# Otherwise
git push origin BRANCH
Posted by: Guest on March-20-2020
4

how to create new branch

How to create a new branch in git 

$ git checkout -b good

here good is new branch name
the line 3 after executing we will go to that branch
Posted by: Guest on October-05-2020
0

git push branch

git checkout -b ma_branche_de_developpement
git push -u repository_distant ma_branche_de_developpement
Posted by: Guest on October-27-2020

Code answers related to "how to create new branch and push to git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language