Skip to content

Latest commit

 

History

History
64 lines (50 loc) · 1.84 KB

contributing.md

File metadata and controls

64 lines (50 loc) · 1.84 KB

Getting started with 100-Days-of-JavaScript-Code

How to Contribute? ✍

  1. Fork the repository

forked

  1. Clone the repository
git clone https://github.com/MohammedHamzaMalik/100-Days-of-JavaScript-Code.git
  1. Go into the directory containing the project, and get started
cd 100-Days-of-JavaScript-Code/<project-directory>

How to make a pull request? :man_technologist:

  1. 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?
  1. After cloning the repository on your local machine you can switch to the cloned repository.
  cd 100-Days-of-JavaScript-Code
  1. Create a new branch.
  git checkout -b <your-branch-name>
  1. Stage your changes.
  git add .
  1. Commit the changes.
  git commit -m "Add <your-github-username>"
  1. Check the status of your repository.
  git status
  1. Push your repository to GitHub.
  git push origin <your-branch-name>
  1. Navigate to your forked repo, and you'll find a new section at the top of the files section with a contribute button!

  2. Click the contribute button to bring up a drop-down menu; select the pull request option from the menu.

  3. 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! 🥳🎉