From a1b410cccd75afb3399139d68fef476be27459ee Mon Sep 17 00:00:00 2001 From: abackstrom Date: Wed, 15 Oct 2014 12:54:00 -0700 Subject: [PATCH] Explain "git add ." --- git.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/git.md b/git.md index 7d40489..8dbf7b0 100644 --- a/git.md +++ b/git.md @@ -34,7 +34,8 @@ Now we should be ready to create and upload the repository. cd public_html/ # This will initialize public_html as a repository git init - # Adds all files to the repo. Note: you can also add files one at a time + # Adds all files to the repo. "." means "the current directory" (public_html, in this case) + # Note: you can also add files one at a time git add . # Commits files to local repo git commit -m "first commit of tildeweb"