create branch with git command code example
Example 1: git create branch
$ git checkout -b iss53
Switched to a new branch "iss53"
Example 2: git create branch
$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'
$ git checkout -b iss53
Switched to a new branch "iss53"
$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'