branches repository code example
Example 1: creating a branch in git
git checkout -b <branch_name>
Example 2: can i create a branch inside of another branch in GIT
$ git commit -am "Your message"
git checkout -b <branch_name>
$ git commit -am "Your message"