Cookie
Cookie

Reputation: 362

Create fork from repository on github but in new pull request not find my fork

I have made a modification of this https://github.com/zo0r/react-native-push-notification repository and when I try to make a new pull request in its repository I press compare forks and my fork doesn't appear ...

What am i doing wrong?

My fork is this: https://github.com/cookienawer/react-native-push-notification

Upvotes: 1

Views: 1214

Answers (2)

lam vu Nguyen
lam vu Nguyen

Reputation: 631

in my case, I need to signin in browser first

Upvotes: 0

Rajeev Desai
Rajeev Desai

Reputation: 144

You need to create a pull request in your forked repository. When creating this pull request, you need to select merge with upstream.

Here are the basic steps to create a pull request in an open-source repo.

  1. Fork the repository.
  2. Create a branch and make the necessary changes.
  3. Create a pull request on your branch and select merge to upstream master.
  4. Submit the pull request for review.

You can find more information here.

Upvotes: 1

Related Questions