how to add git branch code example
Example 1: git create branch
$ git checkout -b [name_of_your_new_branch]
Example 2: creating a branch in git
git checkout -b <branch_name>
Example 3: git create branch
$ git branch iss53
$ git checkout iss53
Example 4: how to create a branch in git
$ git branch [name of branch]
Example 5: git create branch
$ git checkout -b iss53
Switched to a new branch "iss53"