how to create pull request in git command line code example
Example 1: pull from existing git repo
git init .
git remote add origin [url of the repo]
git fetch origin
// To push
git push --set-upstream origin master
git branch -f master origin/master
Example 2: how to send a pull request in git
git push origin some-branch
Example 3: how to make a pr in github
git clone [[email protected]](mailto:[email protected]):kapehe-ok/react-git-pr.git