git branch .a code example
Example 1: create branch in git
# Create New Branch And Switch To It
$ git checkout -b myBranchName
Example 2: git branch
$ git checkout -b iss53
Switched to a new branch "iss53"
# Create New Branch And Switch To It
$ git checkout -b myBranchName
$ git checkout -b iss53
Switched to a new branch "iss53"