From 0285029b1812f73652f87bc7074342f30f18c3e0 Mon Sep 17 00:00:00 2001
From: Benoit Benedetti
will recursively add all files under a directory you give it, if you give it
the current working directory, it will simply start tracking every file
there. In this case, a
git add .
would have done the same
- thing as a git add README hello.rb
, or for that matter so would
- git add *
, but that's only because we don't have subdirectories
- which the *
would not recurse into.
+ thing as a git add README hello.rb
.
OK, so now if we edit one of these files and run git status