-
Notifications
You must be signed in to change notification settings - Fork 13
Working with pull requests
Álvaro Casado Coscollá edited this page Dec 26, 2017
·
2 revisions
- Fork and clone the repo to your computer.
- 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 withgit checkout -b <branch-name>
- Commit your changes.
- Push the working branch to your remote fork.
- Make a PR on the upstream master branch. Do not merge it with the master branch on your fork.
- If there is anything that needs to be changed it will be commented on the PR.
- When everything is okay your PR will be merged!