Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * "git add" builtin command |
| 3 | * |
| 4 | * Copyright (C) 2006 Linus Torvalds |
| 5 | */ |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 6 | #include "cache.h" |
| 7 | #include "builtin.h" |
| 8 | #include "dir.h" |
Junio C Hamano | 5cde71d | 2006-12-10 20:55:50 -0800 | [diff] [blame] | 9 | #include "exec_cmd.h" |
Junio C Hamano | 93872e0 | 2006-05-20 01:28:49 -0700 | [diff] [blame] | 10 | #include "cache-tree.h" |
Kristian Høgsberg | 5868016 | 2007-09-17 20:06:44 -0400 | [diff] [blame] | 11 | #include "run-command.h" |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 12 | #include "parse-options.h" |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 13 | #include "diff.h" |
Linus Torvalds | fb7d3f3 | 2010-01-21 11:37:38 -0800 | [diff] [blame] | 14 | #include "diffcore.h" |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 15 | #include "revision.h" |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 16 | |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 17 | static const char * const builtin_add_usage[] = { |
Stephan Beyer | 1b1dd23 | 2008-07-13 15:36:15 +0200 | [diff] [blame] | 18 | "git add [options] [--] <filepattern>...", |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 19 | NULL |
| 20 | }; |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 21 | static int patch_interactive, add_interactive, edit_interactive; |
Jeff King | 93c44d4 | 2007-05-12 02:42:00 -0400 | [diff] [blame] | 22 | static int take_worktree_changes; |
James Bowes | 896bdfa | 2007-02-27 22:31:10 -0500 | [diff] [blame] | 23 | |
Linus Torvalds | fb7d3f3 | 2010-01-21 11:37:38 -0800 | [diff] [blame] | 24 | struct update_callback_data |
| 25 | { |
| 26 | int flags; |
| 27 | int add_errors; |
| 28 | }; |
| 29 | |
| 30 | static void update_callback(struct diff_queue_struct *q, |
| 31 | struct diff_options *opt, void *cbdata) |
| 32 | { |
| 33 | int i; |
| 34 | struct update_callback_data *data = cbdata; |
| 35 | |
| 36 | for (i = 0; i < q->nr; i++) { |
| 37 | struct diff_filepair *p = q->queue[i]; |
| 38 | const char *path = p->one->path; |
| 39 | switch (p->status) { |
| 40 | default: |
| 41 | die("unexpected diff status %c", p->status); |
| 42 | case DIFF_STATUS_UNMERGED: |
| 43 | /* |
| 44 | * ADD_CACHE_IGNORE_REMOVAL is unset if "git |
| 45 | * add -u" is calling us, In such a case, a |
| 46 | * missing work tree file needs to be removed |
| 47 | * if there is an unmerged entry at stage #2, |
| 48 | * but such a diff record is followed by |
| 49 | * another with DIFF_STATUS_DELETED (and if |
| 50 | * there is no stage #2, we won't see DELETED |
| 51 | * nor MODIFIED). We can simply continue |
| 52 | * either way. |
| 53 | */ |
| 54 | if (!(data->flags & ADD_CACHE_IGNORE_REMOVAL)) |
| 55 | continue; |
| 56 | /* |
| 57 | * Otherwise, it is "git add path" is asking |
| 58 | * to explicitly add it; we fall through. A |
| 59 | * missing work tree file is an error and is |
| 60 | * caught by add_file_to_index() in such a |
| 61 | * case. |
| 62 | */ |
| 63 | case DIFF_STATUS_MODIFIED: |
| 64 | case DIFF_STATUS_TYPE_CHANGED: |
| 65 | if (add_file_to_index(&the_index, path, data->flags)) { |
| 66 | if (!(data->flags & ADD_CACHE_IGNORE_ERRORS)) |
| 67 | die("updating files failed"); |
| 68 | data->add_errors++; |
| 69 | } |
| 70 | break; |
| 71 | case DIFF_STATUS_DELETED: |
| 72 | if (data->flags & ADD_CACHE_IGNORE_REMOVAL) |
| 73 | break; |
| 74 | if (!(data->flags & ADD_CACHE_PRETEND)) |
| 75 | remove_file_from_index(&the_index, path); |
| 76 | if (data->flags & (ADD_CACHE_PRETEND|ADD_CACHE_VERBOSE)) |
| 77 | printf("remove '%s'\n", path); |
| 78 | break; |
| 79 | } |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | int add_files_to_cache(const char *prefix, const char **pathspec, int flags) |
| 84 | { |
| 85 | struct update_callback_data data; |
| 86 | struct rev_info rev; |
| 87 | init_revisions(&rev, prefix); |
| 88 | setup_revisions(0, NULL, &rev, NULL); |
| 89 | rev.prune_data = pathspec; |
| 90 | rev.diffopt.output_format = DIFF_FORMAT_CALLBACK; |
| 91 | rev.diffopt.format_callback = update_callback; |
| 92 | data.flags = flags; |
| 93 | data.add_errors = 0; |
| 94 | rev.diffopt.format_callback_data = &data; |
| 95 | run_diff_files(&rev, DIFF_RACY_IS_MODIFIED); |
| 96 | return !!data.add_errors; |
| 97 | } |
| 98 | |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 99 | static void fill_pathspec_matches(const char **pathspec, char *seen, int specs) |
| 100 | { |
| 101 | int num_unmatched = 0, i; |
| 102 | |
| 103 | /* |
Alexander Potashev | 71fe945 | 2008-12-11 01:27:44 +0300 | [diff] [blame] | 104 | * Since we are walking the index as if we were walking the directory, |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 105 | * we have to mark the matched pathspec as seen; otherwise we will |
| 106 | * mistakenly think that the user gave a pathspec that did not match |
| 107 | * anything. |
| 108 | */ |
| 109 | for (i = 0; i < specs; i++) |
| 110 | if (!seen[i]) |
| 111 | num_unmatched++; |
| 112 | if (!num_unmatched) |
| 113 | return; |
| 114 | for (i = 0; i < active_nr; i++) { |
| 115 | struct cache_entry *ce = active_cache[i]; |
| 116 | match_pathspec(pathspec, ce->name, ce_namelen(ce), 0, seen); |
| 117 | } |
| 118 | } |
| 119 | |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 120 | static void prune_directory(struct dir_struct *dir, const char **pathspec, int prefix) |
| 121 | { |
Linus Torvalds | f259339 | 2006-05-17 13:23:19 -0700 | [diff] [blame] | 122 | char *seen; |
| 123 | int i, specs; |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 124 | struct dir_entry **src, **dst; |
| 125 | |
Linus Torvalds | f259339 | 2006-05-17 13:23:19 -0700 | [diff] [blame] | 126 | for (specs = 0; pathspec[specs]; specs++) |
| 127 | /* nothing */; |
Peter Eriksen | 28f7581 | 2006-07-25 09:30:18 +0200 | [diff] [blame] | 128 | seen = xcalloc(specs, 1); |
Linus Torvalds | f259339 | 2006-05-17 13:23:19 -0700 | [diff] [blame] | 129 | |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 130 | src = dst = dir->entries; |
| 131 | i = dir->nr; |
| 132 | while (--i >= 0) { |
| 133 | struct dir_entry *entry = *src++; |
Junio C Hamano | 4d06f8a | 2006-12-29 11:01:31 -0800 | [diff] [blame] | 134 | if (match_pathspec(pathspec, entry->name, entry->len, |
| 135 | prefix, seen)) |
| 136 | *dst++ = entry; |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 137 | } |
| 138 | dir->nr = dst - dir->entries; |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 139 | fill_pathspec_matches(pathspec, seen, specs); |
Linus Torvalds | f259339 | 2006-05-17 13:23:19 -0700 | [diff] [blame] | 140 | |
| 141 | for (i = 0; i < specs; i++) { |
Jeff King | 07d7bed | 2009-04-28 23:21:01 -0400 | [diff] [blame] | 142 | if (!seen[i] && pathspec[i][0] && !file_exists(pathspec[i])) |
Jeff King | e96980e | 2007-06-12 23:42:14 +0200 | [diff] [blame] | 143 | die("pathspec '%s' did not match any files", |
| 144 | pathspec[i]); |
Linus Torvalds | f259339 | 2006-05-17 13:23:19 -0700 | [diff] [blame] | 145 | } |
Benoit Sigoure | 399f0a8 | 2007-10-29 08:00:33 +0100 | [diff] [blame] | 146 | free(seen); |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Johannes Schindelin | 2ce53f9 | 2009-01-02 19:08:40 +0100 | [diff] [blame] | 149 | static void treat_gitlinks(const char **pathspec) |
| 150 | { |
| 151 | int i; |
| 152 | |
| 153 | if (!pathspec || !*pathspec) |
| 154 | return; |
| 155 | |
| 156 | for (i = 0; i < active_nr; i++) { |
| 157 | struct cache_entry *ce = active_cache[i]; |
| 158 | if (S_ISGITLINK(ce->ce_mode)) { |
| 159 | int len = ce_namelen(ce), j; |
| 160 | for (j = 0; pathspec[j]; j++) { |
| 161 | int len2 = strlen(pathspec[j]); |
| 162 | if (len2 <= len || pathspec[j][len] != '/' || |
| 163 | memcmp(ce->name, pathspec[j], len)) |
| 164 | continue; |
| 165 | if (len2 == len + 1) |
| 166 | /* strip trailing slash */ |
| 167 | pathspec[j] = xstrndup(ce->name, len); |
| 168 | else |
| 169 | die ("Path '%s' is in submodule '%.*s'", |
| 170 | pathspec[j], len, ce->name); |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 176 | static void refresh(int verbose, const char **pathspec) |
| 177 | { |
| 178 | char *seen; |
| 179 | int i, specs; |
| 180 | |
| 181 | for (specs = 0; pathspec[specs]; specs++) |
| 182 | /* nothing */; |
| 183 | seen = xcalloc(specs, 1); |
Matthieu Moy | 43673fd | 2009-08-21 10:57:58 +0200 | [diff] [blame] | 184 | refresh_index(&the_index, verbose ? REFRESH_IN_PORCELAIN : REFRESH_QUIET, |
Matthieu Moy | 3deffc5 | 2009-08-21 10:57:59 +0200 | [diff] [blame] | 185 | pathspec, seen, "Unstaged changes after refreshing the index:"); |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 186 | for (i = 0; i < specs; i++) { |
| 187 | if (!seen[i]) |
| 188 | die("pathspec '%s' did not match any files", pathspec[i]); |
| 189 | } |
Benoit Sigoure | 399f0a8 | 2007-10-29 08:00:33 +0100 | [diff] [blame] | 190 | free(seen); |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 191 | } |
| 192 | |
Junio C Hamano | 3f06188 | 2007-11-25 10:10:10 -0800 | [diff] [blame] | 193 | static const char **validate_pathspec(int argc, const char **argv, const char *prefix) |
| 194 | { |
| 195 | const char **pathspec = get_pathspec(prefix, argv); |
| 196 | |
Junio C Hamano | 725b060 | 2008-08-04 00:52:37 -0700 | [diff] [blame] | 197 | if (pathspec) { |
| 198 | const char **p; |
| 199 | for (p = pathspec; *p; p++) { |
Kjetil Barvik | 5719989 | 2009-02-09 21:54:06 +0100 | [diff] [blame] | 200 | if (has_symlink_leading_path(*p, strlen(*p))) { |
Junio C Hamano | 725b060 | 2008-08-04 00:52:37 -0700 | [diff] [blame] | 201 | int len = prefix ? strlen(prefix) : 0; |
| 202 | die("'%s' is beyond a symbolic link", *p + len); |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | |
Junio C Hamano | 3f06188 | 2007-11-25 10:10:10 -0800 | [diff] [blame] | 207 | return pathspec; |
| 208 | } |
| 209 | |
Thomas Rast | 46b5139 | 2009-08-13 14:29:41 +0200 | [diff] [blame] | 210 | int run_add_interactive(const char *revision, const char *patch_mode, |
| 211 | const char **pathspec) |
| 212 | { |
| 213 | int status, ac, pc = 0; |
| 214 | const char **args; |
| 215 | |
| 216 | if (pathspec) |
| 217 | while (pathspec[pc]) |
| 218 | pc++; |
| 219 | |
| 220 | args = xcalloc(sizeof(const char *), (pc + 5)); |
| 221 | ac = 0; |
| 222 | args[ac++] = "add--interactive"; |
| 223 | if (patch_mode) |
| 224 | args[ac++] = patch_mode; |
| 225 | if (revision) |
| 226 | args[ac++] = revision; |
| 227 | args[ac++] = "--"; |
| 228 | if (pc) { |
| 229 | memcpy(&(args[ac]), pathspec, sizeof(const char *) * pc); |
| 230 | ac += pc; |
| 231 | } |
| 232 | args[ac] = NULL; |
| 233 | |
| 234 | status = run_command_v_opt(args, RUN_GIT_CMD); |
| 235 | free(args); |
| 236 | return status; |
| 237 | } |
| 238 | |
Junio C Hamano | 3f06188 | 2007-11-25 10:10:10 -0800 | [diff] [blame] | 239 | int interactive_add(int argc, const char **argv, const char *prefix) |
Kristian Høgsberg | 5868016 | 2007-09-17 20:06:44 -0400 | [diff] [blame] | 240 | { |
Junio C Hamano | 3f06188 | 2007-11-25 10:10:10 -0800 | [diff] [blame] | 241 | const char **pathspec = NULL; |
Junio C Hamano | 324ccbd | 2007-11-25 10:07:55 -0800 | [diff] [blame] | 242 | |
Junio C Hamano | 3f06188 | 2007-11-25 10:10:10 -0800 | [diff] [blame] | 243 | if (argc) { |
| 244 | pathspec = validate_pathspec(argc, argv, prefix); |
| 245 | if (!pathspec) |
| 246 | return -1; |
| 247 | } |
| 248 | |
Thomas Rast | 46b5139 | 2009-08-13 14:29:41 +0200 | [diff] [blame] | 249 | return run_add_interactive(NULL, |
| 250 | patch_interactive ? "--patch" : NULL, |
| 251 | pathspec); |
Kristian Høgsberg | 5868016 | 2007-09-17 20:06:44 -0400 | [diff] [blame] | 252 | } |
| 253 | |
Linus Torvalds | 2af202b | 2009-06-18 10:28:43 -0700 | [diff] [blame] | 254 | static int edit_patch(int argc, const char **argv, const char *prefix) |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 255 | { |
| 256 | char *file = xstrdup(git_path("ADD_EDIT.patch")); |
| 257 | const char *apply_argv[] = { "apply", "--recount", "--cached", |
| 258 | file, NULL }; |
| 259 | struct child_process child; |
| 260 | struct rev_info rev; |
| 261 | int out; |
| 262 | struct stat st; |
| 263 | |
| 264 | git_config(git_diff_basic_config, NULL); /* no "diff" UI options */ |
| 265 | |
| 266 | if (read_cache() < 0) |
| 267 | die ("Could not read the index"); |
| 268 | |
| 269 | init_revisions(&rev, prefix); |
| 270 | rev.diffopt.context = 7; |
| 271 | |
| 272 | argc = setup_revisions(argc, argv, &rev, NULL); |
| 273 | rev.diffopt.output_format = DIFF_FORMAT_PATCH; |
| 274 | out = open(file, O_CREAT | O_WRONLY, 0644); |
| 275 | if (out < 0) |
| 276 | die ("Could not open '%s' for writing.", file); |
Jim Meyering | 4169837 | 2009-09-12 10:43:27 +0200 | [diff] [blame] | 277 | rev.diffopt.file = xfdopen(out, "w"); |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 278 | rev.diffopt.close_file = 1; |
| 279 | if (run_diff_files(&rev, 0)) |
| 280 | die ("Could not write patch"); |
| 281 | |
| 282 | launch_editor(file, NULL, NULL); |
| 283 | |
| 284 | if (stat(file, &st)) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 285 | die_errno("Could not stat '%s'", file); |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 286 | if (!st.st_size) |
| 287 | die("Empty patch. Aborted."); |
| 288 | |
| 289 | memset(&child, 0, sizeof(child)); |
| 290 | child.git_cmd = 1; |
| 291 | child.argv = apply_argv; |
| 292 | if (run_command(&child)) |
| 293 | die ("Could not apply '%s'", file); |
| 294 | |
| 295 | unlink(file); |
| 296 | return 0; |
| 297 | } |
| 298 | |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 299 | static struct lock_file lock_file; |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 300 | |
Petr Baudis | b39c53e | 2007-08-29 00:41:23 +0200 | [diff] [blame] | 301 | static const char ignore_error[] = |
Junio C Hamano | 6a1ad32 | 2006-12-25 17:46:38 -0800 | [diff] [blame] | 302 | "The following paths are ignored by one of your .gitignore files:\n"; |
| 303 | |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 304 | static int verbose = 0, show_only = 0, ignored_too = 0, refresh_only = 0; |
Junio C Hamano | 3942581 | 2008-08-21 01:44:53 -0700 | [diff] [blame] | 305 | static int ignore_add_errors, addremove, intent_to_add; |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 306 | |
| 307 | static struct option builtin_add_options[] = { |
| 308 | OPT__DRY_RUN(&show_only), |
| 309 | OPT__VERBOSE(&verbose), |
| 310 | OPT_GROUP(""), |
| 311 | OPT_BOOLEAN('i', "interactive", &add_interactive, "interactive picking"), |
Wincent Colaiuta | b63e995 | 2007-11-25 14:15:42 +0100 | [diff] [blame] | 312 | OPT_BOOLEAN('p', "patch", &patch_interactive, "interactive patching"), |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 313 | OPT_BOOLEAN('e', "edit", &edit_interactive, "edit current diff and apply"), |
SZEDER Gábor | 69c61c4 | 2008-06-14 11:48:00 +0200 | [diff] [blame] | 314 | OPT_BOOLEAN('f', "force", &ignored_too, "allow adding otherwise ignored files"), |
| 315 | OPT_BOOLEAN('u', "update", &take_worktree_changes, "update tracked files"), |
Junio C Hamano | 3942581 | 2008-08-21 01:44:53 -0700 | [diff] [blame] | 316 | OPT_BOOLEAN('N', "intent-to-add", &intent_to_add, "record only the fact that the path will be added later"), |
Junio C Hamano | 3ba1f11 | 2008-07-19 19:51:11 -0700 | [diff] [blame] | 317 | OPT_BOOLEAN('A', "all", &addremove, "add all, noticing removal of tracked files"), |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 318 | OPT_BOOLEAN( 0 , "refresh", &refresh_only, "don't add, only refresh the index"), |
Alex Riesen | 984b83e | 2008-05-12 19:58:29 +0200 | [diff] [blame] | 319 | OPT_BOOLEAN( 0 , "ignore-errors", &ignore_add_errors, "just skip files which cannot be added because of errors"), |
Kristian Høgsberg | 5c46f75 | 2007-10-03 17:45:02 -0400 | [diff] [blame] | 320 | OPT_END(), |
| 321 | }; |
| 322 | |
Junio C Hamano | 9bd81e4 | 2008-05-25 14:25:02 -0700 | [diff] [blame] | 323 | static int add_config(const char *var, const char *value, void *cb) |
Alex Riesen | dad25e4 | 2008-05-12 19:59:23 +0200 | [diff] [blame] | 324 | { |
| 325 | if (!strcasecmp(var, "add.ignore-errors")) { |
| 326 | ignore_add_errors = git_config_bool(var, value); |
| 327 | return 0; |
| 328 | } |
Junio C Hamano | 9bd81e4 | 2008-05-25 14:25:02 -0700 | [diff] [blame] | 329 | return git_default_config(var, value, cb); |
Alex Riesen | dad25e4 | 2008-05-12 19:59:23 +0200 | [diff] [blame] | 330 | } |
| 331 | |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 332 | static int add_files(struct dir_struct *dir, int flags) |
| 333 | { |
| 334 | int i, exit_status = 0; |
| 335 | |
| 336 | if (dir->ignored_nr) { |
| 337 | fprintf(stderr, ignore_error); |
| 338 | for (i = 0; i < dir->ignored_nr; i++) |
| 339 | fprintf(stderr, "%s\n", dir->ignored[i]->name); |
| 340 | fprintf(stderr, "Use -f if you really want to add them.\n"); |
| 341 | die("no files added"); |
| 342 | } |
| 343 | |
| 344 | for (i = 0; i < dir->nr; i++) |
| 345 | if (add_file_to_cache(dir->entries[i]->name, flags)) { |
| 346 | if (!ignore_add_errors) |
| 347 | die("adding files failed"); |
| 348 | exit_status = 1; |
| 349 | } |
| 350 | return exit_status; |
| 351 | } |
| 352 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 353 | int cmd_add(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 354 | { |
Alex Riesen | 7ae02a3 | 2008-05-12 19:58:10 +0200 | [diff] [blame] | 355 | int exit_status = 0; |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 356 | int newfd; |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 357 | const char **pathspec; |
| 358 | struct dir_struct dir; |
Gustaf Hendeby | 205ffa9 | 2008-05-22 23:59:42 +0200 | [diff] [blame] | 359 | int flags; |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 360 | int add_new_files; |
| 361 | int require_pathspec; |
Junio C Hamano | 5cde71d | 2006-12-10 20:55:50 -0800 | [diff] [blame] | 362 | |
Stephen Boyd | ed342fd | 2009-06-18 02:17:54 -0700 | [diff] [blame] | 363 | git_config(add_config, NULL); |
| 364 | |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 365 | argc = parse_options(argc, argv, prefix, builtin_add_options, |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 366 | builtin_add_usage, PARSE_OPT_KEEP_ARGV0); |
Wincent Colaiuta | b63e995 | 2007-11-25 14:15:42 +0100 | [diff] [blame] | 367 | if (patch_interactive) |
| 368 | add_interactive = 1; |
Wincent Colaiuta | 7c0ab44 | 2007-11-22 01:02:52 +0100 | [diff] [blame] | 369 | if (add_interactive) |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 370 | exit(interactive_add(argc - 1, argv + 1, prefix)); |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 371 | |
Johannes Schindelin | c59cb03 | 2009-04-08 23:30:24 +0200 | [diff] [blame] | 372 | if (edit_interactive) |
| 373 | return(edit_patch(argc, argv, prefix)); |
| 374 | argc--; |
| 375 | argv++; |
| 376 | |
Junio C Hamano | 3ba1f11 | 2008-07-19 19:51:11 -0700 | [diff] [blame] | 377 | if (addremove && take_worktree_changes) |
| 378 | die("-A and -u are mutually incompatible"); |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 379 | if ((addremove || take_worktree_changes) && !argc) { |
Junio C Hamano | 3ba1f11 | 2008-07-19 19:51:11 -0700 | [diff] [blame] | 380 | static const char *here[2] = { ".", NULL }; |
| 381 | argc = 1; |
| 382 | argv = here; |
| 383 | } |
| 384 | |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 385 | add_new_files = !take_worktree_changes && !refresh_only; |
| 386 | require_pathspec = !take_worktree_changes; |
| 387 | |
Junio C Hamano | 30ca07a | 2007-03-31 23:09:02 -0700 | [diff] [blame] | 388 | newfd = hold_locked_index(&lock_file, 1); |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 389 | |
Gustaf Hendeby | 205ffa9 | 2008-05-22 23:59:42 +0200 | [diff] [blame] | 390 | flags = ((verbose ? ADD_CACHE_VERBOSE : 0) | |
Junio C Hamano | 0166592 | 2008-05-25 14:03:50 -0700 | [diff] [blame] | 391 | (show_only ? ADD_CACHE_PRETEND : 0) | |
Junio C Hamano | 3942581 | 2008-08-21 01:44:53 -0700 | [diff] [blame] | 392 | (intent_to_add ? ADD_CACHE_INTENT : 0) | |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 393 | (ignore_add_errors ? ADD_CACHE_IGNORE_ERRORS : 0) | |
| 394 | (!(addremove || take_worktree_changes) |
| 395 | ? ADD_CACHE_IGNORE_REMOVAL : 0)); |
Gustaf Hendeby | 205ffa9 | 2008-05-22 23:59:42 +0200 | [diff] [blame] | 396 | |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 397 | if (require_pathspec && argc == 0) { |
Junio C Hamano | 93b0d86 | 2006-12-20 13:06:46 -0800 | [diff] [blame] | 398 | fprintf(stderr, "Nothing specified, nothing added.\n"); |
| 399 | fprintf(stderr, "Maybe you wanted to say 'git add .'?\n"); |
| 400 | return 0; |
| 401 | } |
Junio C Hamano | 725b060 | 2008-08-04 00:52:37 -0700 | [diff] [blame] | 402 | pathspec = validate_pathspec(argc, argv, prefix); |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 403 | |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 404 | if (read_cache() < 0) |
| 405 | die("index file corrupt"); |
Johannes Schindelin | 2ce53f9 | 2009-01-02 19:08:40 +0100 | [diff] [blame] | 406 | treat_gitlinks(pathspec); |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 407 | |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 408 | if (add_new_files) { |
| 409 | int baselen; |
| 410 | |
| 411 | /* Set up the default git porcelain excludes */ |
| 412 | memset(&dir, 0, sizeof(dir)); |
| 413 | if (!ignored_too) { |
| 414 | dir.flags |= DIR_COLLECT_IGNORED; |
| 415 | setup_standard_excludes(&dir); |
| 416 | } |
| 417 | |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 418 | /* This picks up the paths that are not tracked */ |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 419 | baselen = fill_directory(&dir, pathspec); |
| 420 | if (pathspec) |
| 421 | prune_directory(&dir, pathspec, baselen); |
| 422 | } |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 423 | |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 424 | if (refresh_only) { |
| 425 | refresh(verbose, pathspec); |
| 426 | goto finish; |
| 427 | } |
| 428 | |
Junio C Hamano | 1e5f764 | 2008-07-22 22:30:40 -0700 | [diff] [blame] | 429 | exit_status |= add_files_to_cache(prefix, pathspec, flags); |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 430 | |
Junio C Hamano | c972ec0 | 2008-07-19 19:22:25 -0700 | [diff] [blame] | 431 | if (add_new_files) |
| 432 | exit_status |= add_files(&dir, flags); |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 433 | |
Junio C Hamano | dfdac5d | 2007-04-20 01:39:39 -0700 | [diff] [blame] | 434 | finish: |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 435 | if (active_cache_changed) { |
| 436 | if (write_cache(newfd, active_cache, active_nr) || |
Brandon Casey | 4ed7cd3 | 2008-01-16 13:12:46 -0600 | [diff] [blame] | 437 | commit_locked_index(&lock_file)) |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 438 | die("Unable to write new index file"); |
| 439 | } |
| 440 | |
Alex Riesen | 7ae02a3 | 2008-05-12 19:58:10 +0200 | [diff] [blame] | 441 | return exit_status; |
Linus Torvalds | 0d78153 | 2006-05-17 09:33:32 -0700 | [diff] [blame] | 442 | } |