Mark Harrison
Mark Harrison

Reputation: 304662

Github: Creating an inter-repository pull request?

The normal github workflow makes it easy to generate and process a pull request between two branches in a repository.

How do I create a github pull request that references a forked repo?

Context: I've forked a repo, made some changes, and want to submit the changes to the original author.

Upvotes: 2

Views: 109

Answers (1)

Aditya Singh
Aditya Singh

Reputation: 16720

When you push a commit to your forked repo and your forked repo gets ahead of the original repo, you will get an option to create a pull request as shown below:enter image description here.

Just click the button to create the pull request and the author of original repo will be notified of the pull -request

Upvotes: 3

Related Questions