Created
June 29, 2011 22:28
-
-
Save jackdempsey/1055176 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ > 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