Merge pull request #2900 from othaime-en/patch-2

Update CONTRIBUTING.md
This commit is contained in:
Patrick Collins
2023-03-13 23:08:03 -04:00
committed by GitHub
+4 -4
View File
@@ -1,14 +1,14 @@
# How do I make a contribution?
Never made an open source contribution before? Wondering how contributions work in the in our project? Here's a quick rundown!
Never made an open-source contribution before? Wondering how contributions work in this project? Here's a quick run-down!
- Find an issue that you are interested in addressing or a feature that you would like to add.
- Find an issue that you want to address or a feature that you want to add.
- Fork the repository associated with the issue to your local GitHub organization. This means that you will have a copy of the repository under `your-GitHub-username/repository-name`.
- Clone the repository to your local machine using `git clone https://github.com/github-username/repository-name.git`.
- Clone the forked repository to your local machine using `git clone https://github.com/github-username/repository-name.git`. E.g. for a repo named "xyzRepo", the user can run https://github.com/github-username/xyzRepo.git.
- Create a new branch for your fix using `git checkout -b branch-name-here`.
- Create a new branch for your fix using `git checkout -b branch-name-here`. E.g `git checkout -b main`
- Make the appropriate changes for the issue you are trying to address or the feature that you want to add.