Adam
18
Q:

how to make a new branch git

// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch
9
$ git checkout -b [name_of_your_new_branch]
0
// create and checkout new branch in one line
git checkout -b new_branch
3
git checkout -b <branch_name>
3
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
2
git checkout -b <new-branch>
1
$ git checkout -b <branch-name>
1
$ git branch [name of branch]
3
$ git checkout -b newBranchName
0

New to Communities?

Join the community