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