create a branch git command code example

Example 1: git create new branch

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

// First Push
git push --set-upstream origin myNewBranch

Example 2: how to make a new branch git

$ git checkout -b [name_of_your_new_branch]

Example 3: create a branch command

$ git remote add [name_of_your_remote] [name_of_your_new_branch]

Example 4: create a branch command

$ git branch -a

Example 5: create a branch command

$ git branch -d [name_of_your_new_branch]