We will be using Git to manage and review your assignments. Please follow this guide to submit your assignment:
-
Clone your assignment git repo
# Clone with HTTPS git clone https://github.com/coding-ninjas-bootcamp/<assignment-name>.git or # Clone with SSH git clone git@github.com:coding-ninjas-bootcamp/<assignment-name>.git
-
Move to your assignment folder
cd <assignment-name>
-
Create a new branch named
solution
git checkout -b solution
-
After you are done with your assignment, push
solution
branch to GitHubgit push --set-upstream origin solution git push
-
Create a PR (Pull Request)
-
Please do NOT merge it by yourself. Wait your instructor for code review
-
If your instructor believes your code can be improved, he/she will leave some comments and suggestions during code review
-
Address comments and suggestions
-
Push your changes to GitHub again
-
If everything looks good, your instructor will merge the
solution
branch tomaster
branch for you. You are good to go!