code-mania-110
Code Mania 110 website, collaboratively built as part of a workshop: Let’s start contributing to open source!
Contribution Cheatsheet
Step 1 Fork
fork this GitHub (top-right button)
Step 2 Clone
clone forked GitHub repo
$git clone https://github.com/your-name/code-mania-110.git
where your-name
is your GitHub ID
Step 3 Develop
- create a branch
$git checkout -b <branch-name>
- add untracked files
$git add .
- commit changes
$git commit -a -m "your short description"
- push changes
$git push origin <branch-name>
- switch branch to master
$git checkout master
- merge to master
$git merge <branch-name>
Step 4 Pull Request
click send Pull Request button on your GitHub