how to create a git branch and pull code example
Example 1: git command to create a branch from another branch
$ git checkout -b myfeature dev
Example 2: how to send a pull request in git
git push origin some-branch
$ git checkout -b myfeature dev
git push origin some-branch