Suppose I make some changes to files, and commit and push the changes to a new branch which I push to github, i.e. something like this:
git commit -m "some changes"
git checkout -b testbranch
git push --set-upstream origin testbranch
Now I want to create a pull request from the command line. I tried
git request-pull testbranch git@github.com:alex4200/hello-world.git
but this says
warn: No match for commit a7c79dc732b3f00d6cf6ffe98e6c79de87110b7b found at git@github.com:alex4200/hello-world.git
warn: Are you sure you pushed 'HEAD' there?
But I see that commit on the github under the given branch with the given commit hash.
What do I misunderstand now?