how to create the git branch code example
Example 1: git create new branch
// create and checkout new branch in one line
git checkout -b new_branch
Example 2: git create branch
$ git checkout -b iss53
Switched to a new branch "iss53"
Example 3: create a branch command
$ git push origin :[name_of_your_new_branch]
Example 4: git create branch
$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'
Example 5: create a branch command
$ git fetch [name_of_your_remote]