Your first PR
Pull requests with patches, improvements, new features are a great help.
Follow the steps to get your work included in the project.
1. Fork the project, clone your fork, and add the UCI-PWA remote:
2. Get the latest changes from upstream:
3. Create a new branch from the master/latest working branch to contain your changes. Best way is to call is to follow the type described in Git Commit Conventions stated above: /<description/scope/topic>
git checkout -b <topic-branch-name>
Example:
git checkout -b mike/buckets-undefined-index
Or
git checkout -b mike/fix
4. Commit your changes
5. Locally rebase the upstream master branch into your topic branch:
git pull --rebase upstream master
6. Push your topic branch up to your fork:
git push origin <topic-branch-name>
Last updated
Was this helpful?