Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.78 KB

File metadata and controls

39 lines (26 loc) · 1.78 KB

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