c099059:git aproeme$ ls c099059:git aproeme$ mkdir archer-cookbook c099059:git aproeme$ cd archer-cookbook/ c099059:archer-cookbook aproeme$ git init Initialized empty Git repository in /Users/aproeme/repositories/git/archer-cookbook/.git/ c099059:archer-cookbook aproeme$ ls c099059:archer-cookbook aproeme$ ls .git/ HEAD config hooks objects branches description info refs c099059:archer-cookbook aproeme$ ls c099059:archer-cookbook aproeme$ ls .git/ HEAD config hooks objects branches description info refs c099059:archer-cookbook aproeme$ git log fatal: bad default revision 'HEAD' c099059:archer-cookbook aproeme$ git status On branch master Initial commit nothing to commit (create/copy files and use "git add" to track) c099059:archer-cookbook aproeme$ emacs recipe c099059:archer-cookbook aproeme$ ls recipe c099059:archer-cookbook aproeme$ git add recipe c099059:archer-cookbook aproeme$ git status On branch master Initial commit Changes to be committed: (use "git rm --cached ..." to unstage) new file: recipe c099059:archer-cookbook aproeme$ git commit -m "Added recipe template" [master (root-commit) 261869a] Added recipe template 1 file changed, 6 insertions(+) create mode 100644 recipe c099059:archer-cookbook aproeme$ git log commit 261869a71f0b842694cd830946e951c6e8817bde Author: Arno Proeme Date: Wed Nov 12 16:27:29 2014 +0000 Added recipe template c099059:archer-cookbook aproeme$ git push fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add and then push using the remote name git push c099059:archer-cookbook aproeme$