/nitk-kode.github.io

A repo to get you started with Open source contributions.

Primary LanguageHTMLMIT LicenseMIT

NITK-KODE

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/)

Learn Git and Github

How to Contribute

  1. Fork this repository by clicking on "Fork" near the navbar. image

  2. Clone the repo locally by running the following command using the link you get from the "Code" button:

git clone <link> image

  1. Create a new branch by using the following command:

git checkout -b <branch_name>

  1. Make your contribution
  2. 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>

  1. Create a pull request to the main branch of this repo from your repo.

Contributers