Some basic Git instructions for Github for Mac and the command line
cd path/to/directory
git init .
git add .
git commit -a -m "commit message goes here"
git clone git@github.com:albatrocity/gratuitator.git
If you only want to get the latest code from the remote repo, select Repository > Pull (⇧⌘P) from the menu bar. This merges the remote code with your local code but does not push up your changes.
If you only want to push up your current state to the remote reop, select Repository > Push (⌘P). This will only work if you already have the most up to date code from the repo.
git pull origin master
git push origin master