Fix formatting of git-blame documentation.
[git/jnareb-git.git] / Documentation / git-add.txt
blob4af3a9b0d78d70d101196326d4c6fbadd743b924
1 git-add(1)
2 ==========
4 NAME
5 ----
6 git-add - Add file contents to the index
8 SYNOPSIS
9 --------
10 'git-add' [-n] [-v] [-f] [--interactive | -i] [-u] [--] <file>...
12 DESCRIPTION
13 -----------
14 This command adds the current content of new or modified files to the
15 index, thus staging that content for inclusion in the next commit.
17 The "index" holds a snapshot of the content of the working tree, and it
18 is this snapshot that is taken as the contents of the next commit.  Thus
19 after making any changes to the working directory, and before running
20 the commit command, you must use the 'add' command to add any new or
21 modified files to the index.
23 This command can be performed multiple times before a commit.  It only
24 adds the content of the specified file(s) at the time the add command is
25 run; if you want subsequent changes included in the next commit, then
26 you must run 'git add' again to add the new content to the index.
28 The 'git status' command can be used to obtain a summary of which
29 files have changes that are staged for the next commit.
31 The 'add' command can be used to add ignored files with `-f` (force)
32 option, but they have to be explicitly and exactly specified from the
33 command line.  File globbing and recursive behaviour do not add ignored
34 files.
36 Please see gitlink:git-commit[1] for alternative ways to add content to a
37 commit.
40 OPTIONS
41 -------
42 <file>...::
43         Files to add content from.  Fileglobs (e.g. `*.c`) can
44         be given to add all matching files.  Also a
45         leading directory name (e.g. `dir` to add `dir/file1`
46         and `dir/file2`) can be given to add all files in the
47         directory, recursively.
49 -n::
50         Don't actually add the file(s), just show if they exist.
52 -v::
53         Be verbose.
55 -f::
56         Allow adding otherwise ignored files.
58 -i, \--interactive::
59         Add modified contents in the working tree interactively to
60         the index.
62 -u::
63         Update only files that git already knows about. This is similar
64         to what "git commit -a" does in preparation for making a commit,
65         except that the update is limited to paths specified on the
66         command line. If no paths are specified, all tracked files are
67         updated.
69 \--::
70         This option can be used to separate command-line options from
71         the list of files, (useful when filenames might be mistaken
72         for command-line options).
75 Configuration
76 -------------
78 The optional configuration variable 'core.excludesfile' indicates a path to a
79 file containing patterns of file names to exclude from git-add, similar to
80 $GIT_DIR/info/exclude.  Patterns in the exclude file are used in addition to
81 those in info/exclude.  See link:repository-layout.html[repository layout].
84 EXAMPLES
85 --------
86 git-add Documentation/\\*.txt::
88         Adds content from all `\*.txt` files under `Documentation`
89         directory and its subdirectories.
91 Note that the asterisk `\*` is quoted from the shell in this
92 example; this lets the command to include the files from
93 subdirectories of `Documentation/` directory.
95 git-add git-*.sh::
97         Considers adding content from all git-*.sh scripts.
98         Because this example lets shell expand the asterisk
99         (i.e. you are listing the files explicitly), it does not
100         consider `subdir/git-foo.sh`.
102 Interactive mode
103 ----------------
104 When the command enters the interactive mode, it shows the
105 output of the 'status' subcommand, and then goes into its
106 interactive command loop.
108 The command loop shows the list of subcommands available, and
109 gives a prompt "What now> ".  In general, when the prompt ends
110 with a single '>', you can pick only one of the choices given
111 and type return, like this:
113 ------------
114     *** Commands ***
115       1: status       2: update       3: revert       4: add untracked
116       5: patch        6: diff         7: quit         8: help
117     What now> 1
118 ------------
120 You also could say "s" or "sta" or "status" above as long as the
121 choice is unique.
123 The main command loop has 6 subcommands (plus help and quit).
125 status::
127    This shows the change between HEAD and index (i.e. what will be
128    committed if you say "git commit"), and between index and
129    working tree files (i.e. what you could stage further before
130    "git commit" using "git-add") for each path.  A sample output
131    looks like this:
133 ------------
134               staged     unstaged path
135      1:       binary      nothing foo.png
136      2:     +403/-35        +1/-1 git-add--interactive.perl
137 ------------
139 It shows that foo.png has differences from HEAD (but that is
140 binary so line count cannot be shown) and there is no
141 difference between indexed copy and the working tree
142 version (if the working tree version were also different,
143 'binary' would have been shown in place of 'nothing').  The
144 other file, git-add--interactive.perl, has 403 lines added
145 and 35 lines deleted if you commit what is in the index, but
146 working tree file has further modifications (one addition and
147 one deletion).
149 update::
151    This shows the status information and gives prompt
152    "Update>>".  When the prompt ends with double '>>', you can
153    make more than one selection, concatenated with whitespace or
154    comma.  Also you can say ranges.  E.g. "2-5 7,9" to choose
155    2,3,4,5,7,9 from the list.  You can say '*' to choose
156    everything.
158 What you chose are then highlighted with '*',
159 like this:
161 ------------
162            staged     unstaged path
163   1:       binary      nothing foo.png
164 * 2:     +403/-35        +1/-1 git-add--interactive.perl
165 ------------
167 To remove selection, prefix the input with `-`
168 like this:
170 ------------
171 Update>> -2
172 ------------
174 After making the selection, answer with an empty line to stage the
175 contents of working tree files for selected paths in the index.
177 revert::
179   This has a very similar UI to 'update', and the staged
180   information for selected paths are reverted to that of the
181   HEAD version.  Reverting new paths makes them untracked.
183 add untracked::
185   This has a very similar UI to 'update' and
186   'revert', and lets you add untracked paths to the index.
188 patch::
190   This lets you choose one path out of 'status' like selection.
191   After choosing the path, it presents diff between the index
192   and the working tree file and asks you if you want to stage
193   the change of each hunk.  You can say:
195        y - add the change from that hunk to index
196        n - do not add the change from that hunk to index
197        a - add the change from that hunk and all the rest to index
198        d - do not the change from that hunk nor any of the rest to index
199        j - do not decide on this hunk now, and view the next
200            undecided hunk
201        J - do not decide on this hunk now, and view the next hunk
202        k - do not decide on this hunk now, and view the previous
203            undecided hunk
204        K - do not decide on this hunk now, and view the previous hunk
206 After deciding the fate for all hunks, if there is any hunk
207 that was chosen, the index is updated with the selected hunks.
209 diff::
211   This lets you review what will be committed (i.e. between
212   HEAD and index).
215 See Also
216 --------
217 gitlink:git-status[1]
218 gitlink:git-rm[1]
219 gitlink:git-mv[1]
220 gitlink:git-commit[1]
221 gitlink:git-update-index[1]
223 Author
224 ------
225 Written by Linus Torvalds <torvalds@osdl.org>
227 Documentation
228 --------------
229 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
233 Part of the gitlink:git[7] suite