Skip to content

Instantly share code, notes, and snippets.

@albertoeks
Last active June 20, 2022 11:06
Show Gist options
  • Save albertoeks/6be2490dbd51d0dce18f06b16e333eef to your computer and use it in GitHub Desktop.
Save albertoeks/6be2490dbd51d0dce18f06b16e333eef to your computer and use it in GitHub Desktop.
Steps to create a GitHub pull request
  1. Fork the project

  2. Clone the downstream repo locally (git clone https://github.com//some-awesome-project

  3. Create a new branch (git checkout -b my_branch)

  4. Create a new remote for the upstream repo (git remote add upstream https://github.com/original-repo/awesome-project)

  5. Push your stuff to the upstream repo (git push -u origin my_branch)

  6. Click the Compare & Pull Request button

  7. Fill out the form and click Create pull request

Happy coding!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment