How do I pull other people (github) gets logged into your tree?

I have a GitHub repo.

Someone forked this repo and has some nice commits I would like to pull in.

They do not respond to email, so I cannot ask them to submit a pull request before my repo.

How can I get these commits into my repo while preserving their authorship, etc.

Command line git solutions or GitHub UI solutions are welcome.

+3


source to share


1 answer


You can create a pull request and compare forks on the GitHub website. Follow this simple step:

  • Login to your repository
  • Click new carry request
  • Click on the comparison between the pitchforks in the text under "Compare Changes"
  • Select the repository as the base fork and their repo as the head fork
  • Create transfer request


This should work for you, although I think it will be similar at the command line level.

+1


source







All Articles