Thank you for your interest in contributing to this project! We welcome contributions from everyone. By participating in this project, you agree to abide by the code of conduct.
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
Adhering to the following process is the best way to get your work included in the project:
- Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory
git clone https://github.com/<your-username>/my-first-contribution.git
# Navigate to the newly cloned directory
cd my-first-contribution
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/Open-reSource/my-first-contribution.git
- If you cloned a while ago, get the latest changes from upstream:
git checkout main
git pull upstream main
- Create a new topic branch off the
main
branch to contain your change:
git checkout -b <topic-branch-name>
- Commit your changes with the following commit message:
git commit -am "Add my GitHub username to the CONTRIBUTORS.md file"
- Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream main
- Push your topic branch up to your fork:
git push origin <topic-branch-name>
- Open a Pull Request with the following title "Add my GitHub username to the CONTRIBUTORS.md file" against the
main
branch. The description is optional.
By contributing your code, you agree to license your contribution under the MIT License.