$ cd ~/develop
$ mkdir my-new-project && cd $_
$ echo “.DS_Store” > .gitignore
$ echo “write your doku here :)” > README
$ git init
$ git add .
$ git commit -m “initial commit”
$ git remote add origin ~/ICloud/git-repos/my-new-project.git
$ git push -u origin master