- Text Editor of your choice
- Git Software
- Node JS
- Fork https://github.com/DevCANS/Guided-Project-To-Do-List/
- Execute,
git clone https://github.com/<your-github-username>/Guided-Project-To-Do-List/
. - Change your working directory to
<path-to-cloned-directory>/Guided-Project-To-Do-List/
. - Execute,
git remote add upstream https://github.com/DevCANS/Guided-Project-To-Do-List/
. - Execute,
git checkout -b <your-new-branch-name>
.- If you want to create a submission for a task, create a new branch of the format
T<Task-Number>-<github-username>
. EgT1-deepakgupta191199
- If you want to create a submission for a task, create a new branch of the format
- Execute,
git add <file-name>
orgit add .
. - Execute,
git commit -m "your-commit-message"
. - Execute,
git push origin <your-current-branch>
. - Raise a Pull Request and give a relevant
label
andtitle
.
NOTE: Whenever any new content is added in the main repository ie. DevCANS/Guided-Project-To-Do-List
- Execute,
git stash
. - Execute,
git checkout main
. - Execute,
git pull upstream main
. - Execute,
git checkout <your-branch>
. - Execute,
git merge main
. - Execute,
git stash pop
.