New to Open Source?
New to Github?
Don't know where to Start?
Don't know how to Start?
Here is the One Stop Solution for Every Newcomer!
You can take any one of the following courses/videos. One is just sufficient. If you want you take more than one too!
- Git and Github for Poets by The Coding Train (It's for everyone and not just poets :P)
- What is Git | What is GitHub | Git Tutorial | GitHub Tutorial | Devops Tutorial | Edureka
Fork this Repo by clicking on the Fork button on the top of this page. This will create a copy of this Repo in your Github account.
- Go to your GitHub account and to this forked Repo, click on the
Clone or Download
button and then click the Copy to Clipboard Icon. - Now open Command Line/Terminal.
- Switch to the Directory where you want to Clone this Repo.
- Run this Command
git clone https://github.com/<your-username>/Hello-World.git
Change to the Repo directory on your Computer by running
cd Hello-World
Now create a branch
git checkout -b <branch-name>
A good way to name your branch is # For example:
git checkout -b shreya#1
- Go to Contributors directory
- Create a file
- Write about Yourself (in any Language)
- Name
- School/College you are studying at or Company you are working at
- Your github username or link to your github profile
- Anything else you want to write
Check Sample
- Save the File
git status
git add <file-names>
git commit -m "Contribution by <your-username>"
git push origin <branch-name>
- Go to your Hello-World Repo on GitHub
- Click
Compare & Pull Request
button. - Click
Create Pull Request
After you are done with this check the Open Issues in this repo or other repos of Novice Paradigm and continue Contributing!