Your first PR
1. Fork the project, clone your fork, and add the UCI-PWA remote:
# Clone your fork of the repo into the current directory
git clone https://github.com/<your-username>/inbound.git
# Navigate to the cloned directory
cd inbound
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/samagra-comms/inbound.git2. Get the latest changes from upstream:
git checkout master
git pull upstream master3. 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>
4. Commit your changes
5. Locally rebase the upstream master branch into your topic branch:
6. Push your topic branch up to your fork:
7. Open a Pull Request with a clear title and description against the master/latest branch.
Last updated
Was this helpful?