atlassian create new branch code example
Example 1: git create branch
$ git branch iss53
$ git checkout iss53
Example 2: git create branch
$ git checkout -b iss53
Switched to a new branch "iss53"
$ git branch iss53
$ git checkout iss53
$ git checkout -b iss53
Switched to a new branch "iss53"