add.c 12.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 * "git add" builtin command
 *
 * Copyright (C) 2006 Linus Torvalds
 */
#include "cache.h"
#include "builtin.h"
8
#include "lockfile.h"
L
Linus Torvalds 已提交
9
#include "dir.h"
10
#include "pathspec.h"
J
Junio C Hamano 已提交
11
#include "exec_cmd.h"
12
#include "cache-tree.h"
13
#include "run-command.h"
14
#include "parse-options.h"
15
#include "diff.h"
16
#include "diffcore.h"
17
#include "revision.h"
18
#include "bulk-checkin.h"
19
#include "argv-array.h"
L
Linus Torvalds 已提交
20

21
static const char * const builtin_add_usage[] = {
22
	N_("git add [<options>] [--] <pathspec>..."),
23 24
	NULL
};
25
static int patch_interactive, add_interactive, edit_interactive;
J
Jeff King 已提交
26
static int take_worktree_changes;
27

28
struct update_callback_data {
29
	int flags, force_mode;
30 31 32
	int add_errors;
};

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
static int fix_unmerged_status(struct diff_filepair *p,
			       struct update_callback_data *data)
{
	if (p->status != DIFF_STATUS_UNMERGED)
		return p->status;
	if (!(data->flags & ADD_CACHE_IGNORE_REMOVAL) && !p->two->mode)
		/*
		 * This is not an explicit add request, and the
		 * path is missing from the working tree (deleted)
		 */
		return DIFF_STATUS_DELETED;
	else
		/*
		 * Either an explicit add request, or path exists
		 * in the working tree.  An attempt to explicitly
		 * add a path that does not exist in the working tree
		 * will be caught as an error by the caller immediately.
		 */
		return DIFF_STATUS_MODIFIED;
}

54 55 56 57 58 59 60 61 62
static void update_callback(struct diff_queue_struct *q,
			    struct diff_options *opt, void *cbdata)
{
	int i;
	struct update_callback_data *data = cbdata;

	for (i = 0; i < q->nr; i++) {
		struct diff_filepair *p = q->queue[i];
		const char *path = p->one->path;
63
		switch (fix_unmerged_status(p, data)) {
64
		default:
65
			die(_("unexpected diff status %c"), p->status);
66 67
		case DIFF_STATUS_MODIFIED:
		case DIFF_STATUS_TYPE_CHANGED:
68 69
			if (add_file_to_index(&the_index, path,
					data->flags, data->force_mode)) {
70
				if (!(data->flags & ADD_CACHE_IGNORE_ERRORS))
71
					die(_("updating files failed"));
72 73 74 75 76 77 78 79 80
				data->add_errors++;
			}
			break;
		case DIFF_STATUS_DELETED:
			if (data->flags & ADD_CACHE_IGNORE_REMOVAL)
				break;
			if (!(data->flags & ADD_CACHE_PRETEND))
				remove_file_from_index(&the_index, path);
			if (data->flags & (ADD_CACHE_PRETEND|ADD_CACHE_VERBOSE))
81
				printf(_("remove '%s'\n"), path);
82 83 84 85 86
			break;
		}
	}
}

87 88
int add_files_to_cache(const char *prefix, const struct pathspec *pathspec,
	int flags, int force_mode)
89
{
90
	struct update_callback_data data;
91
	struct rev_info rev;
92

93 94
	memset(&data, 0, sizeof(data));
	data.flags = flags;
95
	data.force_mode = force_mode;
96

97 98
	init_revisions(&rev, prefix);
	setup_revisions(0, NULL, &rev, NULL);
99 100
	if (pathspec)
		copy_pathspec(&rev.prune_data, pathspec);
101 102
	rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
	rev.diffopt.format_callback = update_callback;
103
	rev.diffopt.format_callback_data = &data;
104
	rev.max_count = 0; /* do not compare unmerged paths with stage #2 */
105 106 107 108
	run_diff_files(&rev, DIFF_RACY_IS_MODIFIED);
	return !!data.add_errors;
}

109
static char *prune_directory(struct dir_struct *dir, struct pathspec *pathspec, int prefix)
L
Linus Torvalds 已提交
110
{
111
	char *seen;
112
	int i;
L
Linus Torvalds 已提交
113 114
	struct dir_entry **src, **dst;

115
	seen = xcalloc(pathspec->nr, 1);
116

L
Linus Torvalds 已提交
117 118 119 120
	src = dst = dir->entries;
	i = dir->nr;
	while (--i >= 0) {
		struct dir_entry *entry = *src++;
121
		if (dir_path_match(entry, pathspec, prefix, seen))
J
Junio C Hamano 已提交
122
			*dst++ = entry;
L
Linus Torvalds 已提交
123 124
	}
	dir->nr = dst - dir->entries;
125
	add_pathspec_matches_against_index(pathspec, seen);
126
	return seen;
L
Linus Torvalds 已提交
127 128
}

129
static void refresh(int verbose, const struct pathspec *pathspec)
130 131
{
	char *seen;
132
	int i;
133

134
	seen = xcalloc(pathspec->nr, 1);
135
	refresh_index(&the_index, verbose ? REFRESH_IN_PORCELAIN : REFRESH_QUIET,
136
		      pathspec, seen, _("Unstaged changes after refreshing the index:"));
137
	for (i = 0; i < pathspec->nr; i++) {
138
		if (!seen[i])
139 140
			die(_("pathspec '%s' did not match any files"),
			    pathspec->items[i].match);
141
	}
142
        free(seen);
143 144
}

145
int run_add_interactive(const char *revision, const char *patch_mode,
146
			const struct pathspec *pathspec)
147
{
148 149
	int status, i;
	struct argv_array argv = ARGV_ARRAY_INIT;
150

151
	argv_array_push(&argv, "add--interactive");
152
	if (patch_mode)
153
		argv_array_push(&argv, patch_mode);
154
	if (revision)
155 156
		argv_array_push(&argv, revision);
	argv_array_push(&argv, "--");
157 158
	for (i = 0; i < pathspec->nr; i++)
		/* pass original pathspec, to be re-parsed */
159
		argv_array_push(&argv, pathspec->items[i].original);
160

161 162
	status = run_command_v_opt(argv.argv, RUN_GIT_CMD);
	argv_array_clear(&argv);
163
	return status;
164 165
}

166
int interactive_add(int argc, const char **argv, const char *prefix, int patch)
167
{
168
	struct pathspec pathspec;
169

170
	parse_pathspec(&pathspec, 0,
171
		       PATHSPEC_PREFER_FULL |
172 173
		       PATHSPEC_SYMLINK_LEADING_PATH |
		       PATHSPEC_PREFIX_ORIGIN,
174
		       prefix, argv);
175 176

	return run_add_interactive(NULL,
177
				   patch ? "--patch" : NULL,
178
				   &pathspec);
179 180
}

181
static int edit_patch(int argc, const char **argv, const char *prefix)
182
{
183
	char *file = git_pathdup("ADD_EDIT.patch");
184
	const char *apply_argv[] = { "apply", "--recount", "--cached",
185
		NULL, NULL };
186
	struct child_process child = CHILD_PROCESS_INIT;
187 188 189 190
	struct rev_info rev;
	int out;
	struct stat st;

191 192
	apply_argv[3] = file;

193 194 195
	git_config(git_diff_basic_config, NULL); /* no "diff" UI options */

	if (read_cache() < 0)
F
Felipe Contreras 已提交
196
		die(_("Could not read the index"));
197 198 199 200 201 202

	init_revisions(&rev, prefix);
	rev.diffopt.context = 7;

	argc = setup_revisions(argc, argv, &rev, NULL);
	rev.diffopt.output_format = DIFF_FORMAT_PATCH;
203
	rev.diffopt.use_color = 0;
204
	DIFF_OPT_SET(&rev.diffopt, IGNORE_DIRTY_SUBMODULES);
205
	out = open(file, O_CREAT | O_WRONLY, 0666);
206
	if (out < 0)
F
Felipe Contreras 已提交
207
		die(_("Could not open '%s' for writing."), file);
208
	rev.diffopt.file = xfdopen(out, "w");
209 210
	rev.diffopt.close_file = 1;
	if (run_diff_files(&rev, 0))
F
Felipe Contreras 已提交
211
		die(_("Could not write patch"));
212

213 214
	if (launch_editor(file, NULL, NULL))
		die(_("editing patch failed"));
215 216

	if (stat(file, &st))
217
		die_errno(_("Could not stat '%s'"), file);
218
	if (!st.st_size)
219
		die(_("Empty patch. Aborted."));
220 221 222 223

	child.git_cmd = 1;
	child.argv = apply_argv;
	if (run_command(&child))
F
Felipe Contreras 已提交
224
		die(_("Could not apply '%s'"), file);
225 226

	unlink(file);
227
	free(file);
228 229 230
	return 0;
}

231
static struct lock_file lock_file;
L
Linus Torvalds 已提交
232

233
static const char ignore_error[] =
234
N_("The following paths are ignored by one of your .gitignore files:\n");
235

236
static int verbose, show_only, ignored_too, refresh_only;
237 238
static int ignore_add_errors, intent_to_add, ignore_missing;

239
#define ADDREMOVE_DEFAULT 1
240 241
static int addremove = ADDREMOVE_DEFAULT;
static int addremove_explicit = -1; /* unspecified */
242

243 244
static char *chmod_arg;

245 246 247 248 249 250 251
static int ignore_removal_cb(const struct option *opt, const char *arg, int unset)
{
	/* if we are told to ignore, we are not adding removals */
	*(int *)opt->value = !unset ? 0 : 1;
	return 0;
}

252
static struct option builtin_add_options[] = {
253 254
	OPT__DRY_RUN(&show_only, N_("dry run")),
	OPT__VERBOSE(&verbose, N_("be verbose")),
255
	OPT_GROUP(""),
256 257 258
	OPT_BOOL('i', "interactive", &add_interactive, N_("interactive picking")),
	OPT_BOOL('p', "patch", &patch_interactive, N_("select hunks interactively")),
	OPT_BOOL('e', "edit", &edit_interactive, N_("edit current diff and apply")),
259
	OPT__FORCE(&ignored_too, N_("allow adding otherwise ignored files")),
260 261
	OPT_BOOL('u', "update", &take_worktree_changes, N_("update tracked files")),
	OPT_BOOL('N', "intent-to-add", &intent_to_add, N_("record only the fact that the path will be added later")),
262
	OPT_BOOL('A', "all", &addremove_explicit, N_("add changes from all tracked and untracked files")),
263 264 265 266
	{ OPTION_CALLBACK, 0, "ignore-removal", &addremove_explicit,
	  NULL /* takes no arguments */,
	  N_("ignore paths removed in the working tree (same as --no-all)"),
	  PARSE_OPT_NOARG, ignore_removal_cb },
267 268 269
	OPT_BOOL( 0 , "refresh", &refresh_only, N_("don't add, only refresh the index")),
	OPT_BOOL( 0 , "ignore-errors", &ignore_add_errors, N_("just skip files which cannot be added because of errors")),
	OPT_BOOL( 0 , "ignore-missing", &ignore_missing, N_("check if - even missing - files are ignored in dry run")),
270
	OPT_STRING( 0 , "chmod", &chmod_arg, N_("(+/-)x"), N_("override the executable bit of the listed files")),
271 272 273
	OPT_END(),
};

J
Junio C Hamano 已提交
274
static int add_config(const char *var, const char *value, void *cb)
275
{
276 277
	if (!strcmp(var, "add.ignoreerrors") ||
	    !strcmp(var, "add.ignore-errors")) {
278 279 280
		ignore_add_errors = git_config_bool(var, value);
		return 0;
	}
J
Junio C Hamano 已提交
281
	return git_default_config(var, value, cb);
282 283
}

284
static int add_files(struct dir_struct *dir, int flags, int force_mode)
285 286 287 288
{
	int i, exit_status = 0;

	if (dir->ignored_nr) {
289
		fprintf(stderr, _(ignore_error));
290 291
		for (i = 0; i < dir->ignored_nr; i++)
			fprintf(stderr, "%s\n", dir->ignored[i]->name);
292
		fprintf(stderr, _("Use -f if you really want to add them.\n"));
M
Michael J Gruber 已提交
293
		exit_status = 1;
294 295 296
	}

	for (i = 0; i < dir->nr; i++)
297 298
		if (add_file_to_index(&the_index, dir->entries[i]->name,
				flags, force_mode)) {
299
			if (!ignore_add_errors)
300
				die(_("adding files failed"));
301 302 303 304 305
			exit_status = 1;
		}
	return exit_status;
}

306
int cmd_add(int argc, const char **argv, const char *prefix)
L
Linus Torvalds 已提交
307
{
308
	int exit_status = 0;
309
	struct pathspec pathspec;
L
Linus Torvalds 已提交
310
	struct dir_struct dir;
311
	int flags, force_mode;
312 313
	int add_new_files;
	int require_pathspec;
314
	char *seen = NULL;
J
Junio C Hamano 已提交
315

316 317
	git_config(add_config, NULL);

318
	argc = parse_options(argc, argv, prefix, builtin_add_options,
319
			  builtin_add_usage, PARSE_OPT_KEEP_ARGV0);
320 321
	if (patch_interactive)
		add_interactive = 1;
322
	if (add_interactive)
323
		exit(interactive_add(argc - 1, argv + 1, prefix, patch_interactive));
L
Linus Torvalds 已提交
324

325 326 327 328 329
	if (edit_interactive)
		return(edit_patch(argc, argv, prefix));
	argc--;
	argv++;

330 331 332 333 334
	if (0 <= addremove_explicit)
		addremove = addremove_explicit;
	else if (take_worktree_changes && ADDREMOVE_DEFAULT)
		addremove = 0; /* "-u" was given but not "-A" */

J
Junio C Hamano 已提交
335
	if (addremove && take_worktree_changes)
336
		die(_("-A and -u are mutually incompatible"));
337 338

	if (!take_worktree_changes && addremove_explicit < 0 && argc)
339 340
		/* Turn "git add pathspec..." to "git add -A pathspec..." */
		addremove = 1;
341

342
	if (!show_only && ignore_missing)
343
		die(_("Option --ignore-missing can only be used together with --dry-run"));
344

345 346 347 348 349 350 351 352 353
	if (!chmod_arg)
		force_mode = 0;
	else if (!strcmp(chmod_arg, "-x"))
		force_mode = 0666;
	else if (!strcmp(chmod_arg, "+x"))
		force_mode = 0777;
	else
		die(_("--chmod param '%s' must be either -x or +x"), chmod_arg);

354
	add_new_files = !take_worktree_changes && !refresh_only;
355
	require_pathspec = !(take_worktree_changes || (0 < addremove_explicit));
356

357
	hold_locked_index(&lock_file, 1);
L
Linus Torvalds 已提交
358

359
	flags = ((verbose ? ADD_CACHE_VERBOSE : 0) |
J
Junio C Hamano 已提交
360
		 (show_only ? ADD_CACHE_PRETEND : 0) |
J
Junio C Hamano 已提交
361
		 (intent_to_add ? ADD_CACHE_INTENT : 0) |
362 363
		 (ignore_add_errors ? ADD_CACHE_IGNORE_ERRORS : 0) |
		 (!(addremove || take_worktree_changes)
364
		  ? ADD_CACHE_IGNORE_REMOVAL : 0));
365

366
	if (require_pathspec && argc == 0) {
367 368
		fprintf(stderr, _("Nothing specified, nothing added.\n"));
		fprintf(stderr, _("Maybe you wanted to say 'git add .'?\n"));
369 370
		return 0;
	}
L
Linus Torvalds 已提交
371

372
	if (read_cache() < 0)
373
		die(_("index file corrupt"));
374 375 376 377 378 379 380 381 382 383

	/*
	 * Check the "pathspec '%s' did not match any files" block
	 * below before enabling new magic.
	 */
	parse_pathspec(&pathspec, 0,
		       PATHSPEC_PREFER_FULL |
		       PATHSPEC_SYMLINK_LEADING_PATH |
		       PATHSPEC_STRIP_SUBMODULE_SLASH_EXPENSIVE,
		       prefix, argv);
384

385 386 387 388 389 390 391 392 393 394
	if (add_new_files) {
		int baselen;

		/* Set up the default git porcelain excludes */
		memset(&dir, 0, sizeof(dir));
		if (!ignored_too) {
			dir.flags |= DIR_COLLECT_IGNORED;
			setup_standard_excludes(&dir);
		}

395
		/* This picks up the paths that are not tracked */
396
		baselen = fill_directory(&dir, &pathspec);
397
		if (pathspec.nr)
398
			seen = prune_directory(&dir, &pathspec, baselen);
399
	}
400

401
	if (refresh_only) {
402
		refresh(verbose, &pathspec);
403
		goto finish;
404 405
	}

406
	if (pathspec.nr) {
407
		int i;
408

409
		if (!seen)
410
			seen = find_pathspecs_matching_against_index(&pathspec);
411 412 413 414

		/*
		 * file_exists() assumes exact match
		 */
415 416 417
		GUARD_PATHSPEC(&pathspec,
			       PATHSPEC_FROMTOP |
			       PATHSPEC_LITERAL |
418
			       PATHSPEC_GLOB |
419 420
			       PATHSPEC_ICASE |
			       PATHSPEC_EXCLUDE);
421

422 423
		for (i = 0; i < pathspec.nr; i++) {
			const char *path = pathspec.items[i].match;
424 425
			if (pathspec.items[i].magic & PATHSPEC_EXCLUDE)
				continue;
426
			if (!seen[i] && path[0] &&
427 428
			    ((pathspec.items[i].magic &
			      (PATHSPEC_GLOB | PATHSPEC_ICASE)) ||
429
			     !file_exists(path))) {
430
				if (ignore_missing) {
431
					int dtype = DT_UNKNOWN;
432 433
					if (is_excluded(&dir, path, &dtype))
						dir_add_ignored(&dir, path, pathspec.items[i].len);
434
				} else
435
					die(_("pathspec '%s' did not match any files"),
436
					    pathspec.items[i].original);
437
			}
438 439 440 441
		}
		free(seen);
	}

442 443
	plug_bulk_checkin();

444
	exit_status |= add_files_to_cache(prefix, &pathspec, flags, force_mode);
445 446

	if (add_new_files)
447
		exit_status |= add_files(&dir, flags, force_mode);
L
Linus Torvalds 已提交
448

449 450
	unplug_bulk_checkin();

F
Felipe Contreras 已提交
451
finish:
L
Linus Torvalds 已提交
452
	if (active_cache_changed) {
453
		if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
454
			die(_("Unable to write new index file"));
L
Linus Torvalds 已提交
455 456
	}

457
	return exit_status;
L
Linus Torvalds 已提交
458
}