Hello
Please create a branch for every task you complete and create a pull request to merge that pull request to the main branch.
to create a branch
- git checkout main # change branch to main, so will create the new branch based on main
- git pull # make sure you are up to date with remote
- git checkout -b "new-branch-name" # please make sure to write reasonable names
- write your code to complete the task
- git add .
- git commit -m "message"
- git push
to create pull request