Skip to content

Working with pull requests

Álvaro Casado Coscollá edited this page Dec 26, 2017 · 2 revisions

How to properly submit a PR

  1. Fork and clone the repo to your computer.
  2. Make sure you're on the master branch and you are up to date with git status. Create a separate branch with the name of the issue you are going to work in with git checkout -b <branch-name>
  3. Commit your changes.
  4. Push the working branch to your remote fork.
  5. Make a PR on the upstream master branch. Do not merge it with the master branch on your fork.
  6. If there is anything that needs to be changed it will be commented on the PR.
  7. When everything is okay your PR will be merged!