- Fork the repository
- Clone the repository
git clone https://github.com/MohammedHamzaMalik/100-Days-of-JavaScript-Code.git
- Go into the directory containing the project, and get started
cd 100-Days-of-JavaScript-Code/<project-directory>
- Before making a pull request,
- go to the Issues tab of the repository and click on the issue you want to work on.
- Under that issue, write a comment asking permission for the admin of the repository to assign you the issue you want to work on.
- For example,
I would like to work on this issue. Can you assign it to me?
- After cloning the repository on your local machine you can switch to the cloned repository.
cd 100-Days-of-JavaScript-Code
- Create a new branch.
git checkout -b <your-branch-name>
- Stage your changes.
git add .
- Commit the changes.
git commit -m "Add <your-github-username>"
- Check the status of your repository.
git status
- Push your repository to GitHub.
git push origin <your-branch-name>
-
Navigate to your forked repo, and you'll find a new section at the top of the files section with a contribute button!
-
Click the contribute button to bring up a drop-down menu; select the pull request option from the menu.
-
But before making a pull request, be sure to link the issue in the description box for which you are creating the pull request.
Note: A pull request allows you to merge your changes into the main project.
Wait for your edits to be merged before proceeding.
Hurray! You've made a significant contribution! 🥳🎉