$ mkdir MyProject
$ cd MyProject
$ git init
OR
$ git clone git@github.com:vml-akoebbe/mustached-dubstep.git
Cloning into 'mustached-dubstep'...
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 3 (delta 0)
Receiving objects: 100% (3/3), done.
Checking connectivity... done.
$ ls
mustached-dubstep
$ git push origin master
Counting objects: 4, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 456 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To git@github.com:vml-akoebbe/mustached-dubstep.git
$ git add cssgen.py
$ git commit -m "Added python css generator"
[master 43bd5eb] Added python css generator
1 file changed, 4 insertions(+)
create mode 100644 cssgen.py
$ git branch NewFeature
$ git branch
NewFeature
* master
$ git checkout NewFeature
Switched to branch 'NewFeature'
$ git commit -a -m "Added a new line"
[NewFeature e5a4c95] Added a new line
1 file changed, 1 insertion(+)
$ git push origin NewFeature
Counting objects: 9, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 315 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
To git@github.com:vml-akoebbe/mustached-dubstep.git
* [new branch] NewFeature -> NewFeature
https://www.youtube.com/watch?v=1ffBJ4sVUb4 (Git For Ages 4 and Up)