Skip to content

Instantly share code, notes, and snippets.

@edueo
Created October 8, 2015 12:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edueo/026580107fdf06260a0c to your computer and use it in GitHub Desktop.
Save edueo/026580107fdf06260a0c to your computer and use it in GitHub Desktop.
The beginner's guide to contributing to a GitHub project
  1. Fork
  2. Clone your fork
  3. Add upstream : git remote add upstream <github_repo>
  4. git checkout master
  5. git pull upstream master && git push origin master
  6. git checkout -b feature-branch
  7. git push -u feature-branch
  8. Create de PR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment