git-add - Add file contents to the index
This command updates the index using the current
content found in the working tree, to prepare the
content staged for the next commit.
Adds content from all *.txt
files under
Documentation directory and its subdirectories:
$ git add Documentation/\*.txt
Considers adding content from all git-*.sh
scripts:
$ git add git-*.sh