Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created June 29, 2011 22:28
Show Gist options
  • Save jackdempsey/1055176 to your computer and use it in GitHub Desktop.
Save jackdempsey/1055176 to your computer and use it in GitHub Desktop.
~ > mkdir foo
~ > cd foo
~/foo > git init
Initialized empty Git repository in /Users/jack/foo/.git/
~/foo master > touch .this_shows
~/foo master > gst
# On branch master
#
# Initial commit
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .this_shows
nothing added to commit but untracked files present (use "git add" to track)
~/foo master > git add .
~/foo master > gst
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: .this_shows
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment