how to send a pull request github code example
Example 1: how to open a branch and make a merge request
git checkout "name your branch"
git pull
(add any files)
git add .
git commit -m "message entered here"
git push (an alternative command will come up in which case use that command)
(follow the link to complete the merge request)
Example 2: how to send a pull request in git
git push origin some-branch