Skip to content

Latest commit

 

History

History
42 lines (23 loc) · 1.12 KB

CONTRIBUTING.md

File metadata and controls

42 lines (23 loc) · 1.12 KB

Contribution Rules 📚⭐ :

  • Do NOT remove other contents in the file.
  • Styling/code can be pretty, ugly or stupid, big or small as long as the code works it is ok.
  • Try to keep pull requests small to minimize merge conflicts.

Getting started :

  • Fork this repo (button on the top).

  • Clone it to your local machine.

      git clone https://github.com/Roshankc682/To-do-List-using-JS.git
    
  • Navigate to the project directory.

      cd To-do-List-using-JS
    
  • Add a new remote branch (Note:Only after navigating to the project directory)

      git remote add develop https://github.com/{YOUR_USERNAME}/To-do-List-using-JS.git
    
  • Create a new branch

      git checkout -b {Name_of_new_branch}
    
  • Add all the changes that you have made

      git add .
    
  • Commit your changes

      git commit -m "{Message}"
    
  • Then push

      git push devolp {Name_of_new_branch}
    
  • Create a new pull request from your forked repository by clicking New-Pull-Request which automatically selects all the new commits you have done.

  • You can wait for the Pull-Request to be Merged 😄.

Happy Hacking 🤩