1. Install git
OS X: brew install git
Debian: apt-get install git
Windows: https://git-scm.com/download/win
2. Register to Github
-> Create new repository
3. Clone the repository to your local computer (You get the https-address from Github)
git clone https://github.com/[your username]/[your repository].git
4. Make your changes to the folder
5. git add . && git commit; git pull && git push
-> Describe your change (like this)
Extra.
git diff - Show changes
git status - Show the working tree status
Kim Salmi