Documentation / git-add.txton commit GIT 0.99.9a (e634aec)
   1git-add(1)
   2==========
   3
   4NAME
   5----
   6git-add - Add files to the cache.
   7
   8SYNOPSIS
   9--------
  10'git-add' [-n] [-v] <file>...
  11
  12DESCRIPTION
  13-----------
  14A simple wrapper for git-update-index to add files to the cache for people used
  15to do "cvs add".
  16
  17OPTIONS
  18-------
  19<file>...::
  20        Files to add to the cache.
  21
  22-n::
  23        Don't actually add the file(s), just show if they exist.
  24
  25-v::
  26        Be verbose.
  27
  28
  29Author
  30------
  31Written by Linus Torvalds <torvalds@osdl.org>
  32
  33Documentation
  34--------------
  35Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
  36
  37GIT
  38---
  39Part of the gitlink:git[7] suite
  40