In order to simulate how fork works, I registered two GitHub accounts(Let's say they are G1 and G2), I setup a remote repository in G1. Then I cloned it on my local computer as:
$ git clone <url>
and forked that repository in G2, and added the forked repository as:
$ git remote add myfork <url>
then I added a new feature, and pushed fixs on the forked repository as :
$ git push -u myfork featureA
then I did:
$ git request-pull origin/master myfork
so I checked if I received a new pull request on my G1 account and there was none, and I didn't receive any notification email(linked to G1), so where did I go wrong?