- 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.
-
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 😄.