A website for NIT-KODE, made so that NITK students can make their beginner contributions and get familiar with the GitHub and git ecosystem.
(https://nitk-kode.github.io/)
Fork this repository by clicking on "Fork" near the navbar.
Clone the repo locally by running the following command using the link you get from the "Code" button:
git clone <link>
Create a new branch by using the following command:
git checkout -b <branch_name>
Make your contribution
Push changes to origin by executing the following series of commands:
git add .
git commit -m "First Commit / Commit Message"
git push -u origin <branch_name>