2 * "git add" builtin command
4 * Copyright (C) 2006 Linus Torvalds
10 #include "cache-tree.h"
16 static const char builtin_add_usage
[] =
17 "git-add [-n] [-v] [-f] [--interactive | -i] [-u] [--] <filepattern>...";
19 static int take_worktree_changes
;
20 static const char *excludes_file
;
22 static void prune_directory(struct dir_struct
*dir
, const char **pathspec
, int prefix
)
26 struct dir_entry
**src
, **dst
;
28 for (specs
= 0; pathspec
[specs
]; specs
++)
30 seen
= xcalloc(specs
, 1);
32 src
= dst
= dir
->entries
;
35 struct dir_entry
*entry
= *src
++;
36 if (match_pathspec(pathspec
, entry
->name
, entry
->len
,
40 dir
->nr
= dst
- dir
->entries
;
42 for (i
= 0; i
< specs
; i
++) {
43 if (!seen
[i
] && !file_exists(pathspec
[i
]))
44 die("pathspec '%s' did not match any files",
49 static void fill_directory(struct dir_struct
*dir
, const char **pathspec
,
52 const char *path
, *base
;
55 /* Set up the default git porcelain excludes */
56 memset(dir
, 0, sizeof(*dir
));
58 dir
->collect_ignored
= 1;
59 dir
->exclude_per_dir
= ".gitignore";
60 path
= git_path("info/exclude");
61 if (!access(path
, R_OK
))
62 add_excludes_from_file(dir
, path
);
63 if (!access(excludes_file
, R_OK
))
64 add_excludes_from_file(dir
, excludes_file
);
68 * Calculate common prefix for the pathspec, and
69 * use that to optimize the directory walk
71 baselen
= common_prefix(pathspec
);
75 char *common
= xmalloc(baselen
+ 1);
76 memcpy(common
, *pathspec
, baselen
);
81 /* Read the directory and prune it */
82 read_directory(dir
, path
, base
, baselen
, pathspec
);
84 prune_directory(dir
, pathspec
, baselen
);
87 static void update_callback(struct diff_queue_struct
*q
,
88 struct diff_options
*opt
, void *cbdata
)
92 verbose
= *((int *)cbdata
);
93 for (i
= 0; i
< q
->nr
; i
++) {
94 struct diff_filepair
*p
= q
->queue
[i
];
95 const char *path
= p
->one
->path
;
98 die("unexpacted diff status %c", p
->status
);
99 case DIFF_STATUS_UNMERGED
:
100 case DIFF_STATUS_MODIFIED
:
101 add_file_to_cache(path
, verbose
);
103 case DIFF_STATUS_DELETED
:
104 remove_file_from_cache(path
);
106 printf("remove '%s'\n", path
);
112 static void update(int verbose
, const char **files
)
115 init_revisions(&rev
, "");
116 setup_revisions(0, NULL
, &rev
, NULL
);
117 rev
.prune_data
= get_pathspec(rev
.prefix
, files
);
118 rev
.diffopt
.output_format
= DIFF_FORMAT_CALLBACK
;
119 rev
.diffopt
.format_callback
= update_callback
;
120 rev
.diffopt
.format_callback_data
= &verbose
;
121 if (read_cache() < 0)
122 die("index file corrupt");
123 run_diff_files(&rev
, 0);
126 static int git_add_config(const char *var
, const char *value
)
128 if (!strcmp(var
, "core.excludesfile")) {
130 die("core.excludesfile without value");
131 excludes_file
= xstrdup(value
);
135 return git_default_config(var
, value
);
138 static struct lock_file lock_file
;
140 static const char ignore_warning
[] =
141 "The following paths are ignored by one of your .gitignore files:\n";
143 int cmd_add(int argc
, const char **argv
, const char *prefix
)
146 int verbose
= 0, show_only
= 0, ignored_too
= 0;
147 const char **pathspec
;
148 struct dir_struct dir
;
149 int add_interactive
= 0;
151 for (i
= 1; i
< argc
; i
++) {
152 if (!strcmp("--interactive", argv
[i
]) ||
153 !strcmp("-i", argv
[i
]))
156 if (add_interactive
) {
157 const char *args
[] = { "add--interactive", NULL
};
159 if (add_interactive
!= 1 || argc
!= 2)
160 die("add --interactive does not take any parameters");
165 git_config(git_add_config
);
167 newfd
= hold_locked_index(&lock_file
, 1);
169 for (i
= 1; i
< argc
; i
++) {
170 const char *arg
= argv
[i
];
174 if (!strcmp(arg
, "--")) {
178 if (!strcmp(arg
, "-n")) {
182 if (!strcmp(arg
, "-f")) {
186 if (!strcmp(arg
, "-v")) {
190 if (!strcmp(arg
, "-u")) {
191 take_worktree_changes
= 1;
194 usage(builtin_add_usage
);
197 if (take_worktree_changes
) {
198 update(verbose
, argv
+ i
);
203 fprintf(stderr
, "Nothing specified, nothing added.\n");
204 fprintf(stderr
, "Maybe you wanted to say 'git add .'?\n");
207 pathspec
= get_pathspec(prefix
, argv
+ i
);
209 fill_directory(&dir
, pathspec
, ignored_too
);
212 const char *sep
= "", *eof
= "";
213 for (i
= 0; i
< dir
.nr
; i
++) {
214 printf("%s%s", sep
, dir
.entries
[i
]->name
);
222 if (read_cache() < 0)
223 die("index file corrupt");
225 if (dir
.ignored_nr
) {
226 fprintf(stderr
, ignore_warning
);
227 for (i
= 0; i
< dir
.ignored_nr
; i
++) {
228 fprintf(stderr
, "%s\n", dir
.ignored
[i
]->name
);
230 fprintf(stderr
, "Use -f if you really want to add them.\n");
234 for (i
= 0; i
< dir
.nr
; i
++)
235 add_file_to_cache(dir
.entries
[i
]->name
, verbose
);
238 if (active_cache_changed
) {
239 if (write_cache(newfd
, active_cache
, active_nr
) ||
240 close(newfd
) || commit_locked_index(&lock_file
))
241 die("Unable to write new index file");