Download Git and after installing go to git bash or cmd window and setup your identity using
git config --global user.name "Github wala username"
git config --global user.email example@gmail.com
Download and install VS code editor for getting good feel while writing codes
To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window(Command prompt).
git clone https://github.com/Coding-Club-NIT-Meghalaya/CodingClubWebsite.git
Now we have the copy of file in our computer (you can cross verify it by going to the location showing in Command Prompt)
Open the folder in VS code manually or use code .
in command prompt it will directly open the all the files in editor.
Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do in two stages- (First Staging and then Commiting)
The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is.
git push origin main