Reputation: 4279
I am pretty new to github and I really liked it. Now I created a repository. Suppose someone else forked my repository. Now suppose if I commit some changes in my repository then I want that these changes should also go to that guys repository who forked my repository. But I don't want to make a pull request to the other guys repository every time I make some commit in my repsitory.
Upvotes: 2
Views: 110
Reputation: 1
As has already been commented, for your situation it might be best to just both work on the same repo, without forking. You can do this by having one user create a repo, then they can add a collaborator
collab http://github-images.s3.amazonaws.com/help/repo-settings-collaborators.png
Once this is all done you can create a local copy by cloning
git clone [email protected]:stedolan/jq.git
Upvotes: 2