create pull request using git command line code example
Example 1: create pull request git bash
git checkout -b new_branch
git add .
git commit -m "Adding a test file to new_branch"
git push
git
# Now go to github.com to review your contribution and merge new_branch
Example 2: create pull request from command line
git request-pull [-p] <start> <url> [<end>]