Reputation: 43
Basically, I have a user who forked a repository of mine. I like the improvements they've made to my code, so I'd like to add it to my repo. Is there anyway I can open a pull request or use some method to add their code to my repo?
Upvotes: 4
Views: 44
Reputation: 179
The most appropriate thing to do would be to contact them and ask if they could open a pull request to merge their changes into your original repository.
While you could also clone their repo, add your original as a remote, merge the changes locally and then push to your own repo, you would need to check their license, and they might not know that you pulled their work into yours. If you want to try this, do the following:
If someone liked changes I made in a fork of their repository, I would appreciate hearing that direct from them, and would happily open a PR if they asked. That's the easy route.
Upvotes: 4