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.
# 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.git
git checkout master
git pull upstream master
git checkout -b <topic-branch-name>
Example:
git checkout -b mike/buckets-undefined-index
Or
git checkout -b mike/fix
Commit your changes in logical chunks. Please adhere to Git Commit Conventions and Coding guidelines or your code is unlikely to be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.
git pull --rebase upstream master
git push origin <topic-branch-name>
Last modified 11mo ago