creating a git branch code example

Example 1: git command to create a branch

//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
git push --set-upstream origin [name_of_your_new_branch]

Example 2: create new branch git

$ git checkout -b [name_of_your_new_branch]

Example 3: creating a branch in git

git checkout -b <branch_name>

Example 4: git create branch

$ git branch iss53
$ git checkout iss53

Example 5: git new branch

# to create a new "footer-fix" branch
$ git branch footer-fix

# to create AND switch to "footer-fix" branch
$ git checkout -b footer-fix

Example 6: create new branch git

$ git checkout --track origin/newsletter
Branch newsletter set up to track remote branch newsletter from origin.
Switched to a new branch 'newsletter'