how to make a new branch using git code example
Example 1: command to create a new branch in git
$ git checkout -b <branch-name>
Example 2: git create branch
$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'
$ git checkout -b <branch-name>
$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'