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/)
-
Clone the repo locally by running the following command using the link you get from the "Code" button:
- 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>
- Create a pull request to the main branch of this repo from your repo.