get all git branch files regarding merge code example
Example 1: git branch and checkout at the same time
$ git checkout -b <branch_name>
Example 2: how to merge a branch into another branch
git checkout YourBranch
git merge develop
$ git checkout -b <branch_name>
git checkout YourBranch
git merge develop