2 * Check-out files from the "current cache directory"
4 * Copyright (C) 2005 Linus Torvalds
6 * Careful: order of argument flags does matter. For example,
8 * git-checkout-index -a -f file.c
10 * Will first check out all files listed in the cache (but not
11 * overwrite any old ones), and then force-checkout "file.c" a
12 * second time (ie that one _will_ overwrite any old contents
13 * with the same filename).
15 * Also, just doing "git-checkout-index" does nothing. You probably
16 * meant "git-checkout-index -a". And if you want to force it, you
17 * want "git-checkout-index -f -a".
19 * Intuitiveness is not the goal here. Repeatability is. The
20 * reason for the "no arguments means no work" thing is that
21 * from scripts you are supposed to be able to do things like
23 * find . -name '*.h' -print0 | xargs -0 git-checkout-index -f --
27 * find . -name '*.h' -print0 | git-checkout-index -f -z --stdin
29 * which will force all existing *.h files to be replaced with
30 * their cached copies. If an empty command line implied "all",
31 * then this would force-refresh everything in the cache, which
34 * Oh, and the "--" is just a good idea when you know the rest
35 * will be filenames. Just so that you wouldn't have a filename
36 * of "-a" causing problems (not possible in the above example,
37 * but get used to it in scripting!).
42 #include "cache-tree.h"
44 #define CHECKOUT_ALL 4
45 static const char *prefix
;
46 static int prefix_length
;
47 static int line_termination
= '\n';
48 static int checkout_stage
; /* default to checkout stage0 */
49 static int to_tempfile
;
50 static char topath
[4][MAXPATHLEN
+1];
52 static struct checkout state
= {
61 static void write_tempfile_record (const char *name
)
65 if (CHECKOUT_ALL
== checkout_stage
) {
66 for (i
= 1; i
< 4; i
++) {
70 fputs(topath
[i
], stdout
);
75 fputs(topath
[checkout_stage
], stdout
);
78 write_name_quoted("", 0, name
+ prefix_length
,
79 line_termination
, stdout
);
80 putchar(line_termination
);
82 for (i
= 0; i
< 4; i
++) {
87 static int checkout_file(const char *name
)
89 int namelen
= strlen(name
);
90 int pos
= cache_name_pos(name
, namelen
);
91 int has_same_name
= 0;
98 while (pos
< active_nr
) {
99 struct cache_entry
*ce
= active_cache
[pos
];
100 if (ce_namelen(ce
) != namelen
||
101 memcmp(ce
->name
, name
, namelen
))
105 if (ce_stage(ce
) != checkout_stage
106 && (CHECKOUT_ALL
!= checkout_stage
|| !ce_stage(ce
)))
109 if (checkout_entry(ce
, &state
,
110 to_tempfile
? topath
[ce_stage(ce
)] : NULL
) < 0)
116 write_tempfile_record(name
);
117 return errs
> 0 ? -1 : 0;
121 fprintf(stderr
, "git-checkout-index: %s ", name
);
123 fprintf(stderr
, "is not in the cache");
124 else if (checkout_stage
)
125 fprintf(stderr
, "does not exist at stage %d",
128 fprintf(stderr
, "is unmerged");
134 static int checkout_all(void)
137 struct cache_entry
* last_ce
= NULL
;
139 for (i
= 0; i
< active_nr
; i
++) {
140 struct cache_entry
*ce
= active_cache
[i
];
141 if (ce_stage(ce
) != checkout_stage
142 && (CHECKOUT_ALL
!= checkout_stage
|| !ce_stage(ce
)))
144 if (prefix
&& *prefix
&&
145 (ce_namelen(ce
) <= prefix_length
||
146 memcmp(prefix
, ce
->name
, prefix_length
)))
148 if (last_ce
&& to_tempfile
) {
149 if (ce_namelen(last_ce
) != ce_namelen(ce
)
150 || memcmp(last_ce
->name
, ce
->name
, ce_namelen(ce
)))
151 write_tempfile_record(last_ce
->name
);
153 if (checkout_entry(ce
, &state
,
154 to_tempfile
? topath
[ce_stage(ce
)] : NULL
) < 0)
158 if (last_ce
&& to_tempfile
)
159 write_tempfile_record(last_ce
->name
);
161 /* we have already done our error reporting.
162 * exit with the same code as die().
168 static const char checkout_cache_usage
[] =
169 "git-checkout-index [-u] [-q] [-a] [-f] [-n] [--stage=[123]|all] [--prefix=<string>] [--temp] [--] <file>...";
171 static struct lock_file lock_file
;
173 int main(int argc
, char **argv
)
178 int read_from_stdin
= 0;
180 prefix
= setup_git_directory();
181 git_config(git_default_config
);
182 prefix_length
= prefix
? strlen(prefix
) : 0;
184 if (read_cache() < 0) {
185 die("invalid cache");
188 for (i
= 1; i
< argc
; i
++) {
189 const char *arg
= argv
[i
];
191 if (!strcmp(arg
, "--")) {
195 if (!strcmp(arg
, "-a") || !strcmp(arg
, "--all")) {
199 if (!strcmp(arg
, "-f") || !strcmp(arg
, "--force")) {
203 if (!strcmp(arg
, "-q") || !strcmp(arg
, "--quiet")) {
207 if (!strcmp(arg
, "-n") || !strcmp(arg
, "--no-create")) {
211 if (!strcmp(arg
, "-u") || !strcmp(arg
, "--index")) {
212 state
.refresh_cache
= 1;
214 newfd
= hold_lock_file_for_update
215 (&lock_file
, get_index_file());
217 die("cannot open index.lock file.");
220 if (!strcmp(arg
, "-z")) {
221 line_termination
= 0;
224 if (!strcmp(arg
, "--stdin")) {
226 die("--stdin must be at the end");
228 i
++; /* do not consider arg as a file name */
231 if (!strcmp(arg
, "--temp")) {
235 if (!strncmp(arg
, "--prefix=", 9)) {
236 state
.base_dir
= arg
+9;
237 state
.base_dir_len
= strlen(state
.base_dir
);
240 if (!strncmp(arg
, "--stage=", 8)) {
241 if (!strcmp(arg
+ 8, "all")) {
243 checkout_stage
= CHECKOUT_ALL
;
246 if ('1' <= ch
&& ch
<= '3')
247 checkout_stage
= arg
[8] - '0';
249 die("stage should be between 1 and 3 or all");
254 usage(checkout_cache_usage
);
258 if (state
.base_dir_len
|| to_tempfile
) {
259 /* when --prefix is specified we do not
260 * want to update cache.
262 if (state
.refresh_cache
) {
263 close(newfd
); newfd
= -1;
264 rollback_lock_file(&lock_file
);
266 state
.refresh_cache
= 0;
269 /* Check out named files first */
270 for ( ; i
< argc
; i
++) {
271 const char *arg
= argv
[i
];
275 die("git-checkout-index: don't mix '--all' and explicit filenames");
277 die("git-checkout-index: don't mix '--stdin' and explicit filenames");
278 p
= prefix_path(prefix
, prefix_length
, arg
);
280 if (p
< arg
|| p
> arg
+ strlen(arg
))
284 if (read_from_stdin
) {
287 die("git-checkout-index: don't mix '--all' and '--stdin'");
293 read_line(&buf
, stdin
, line_termination
);
296 if (line_termination
&& buf
.buf
[0] == '"')
297 path_name
= unquote_c_style(buf
.buf
, NULL
);
300 p
= prefix_path(prefix
, prefix_length
, path_name
);
302 if (p
< path_name
|| p
> path_name
+ strlen(path_name
))
304 if (path_name
!= buf
.buf
)
313 (write_cache(newfd
, active_cache
, active_nr
) ||
314 commit_lock_file(&lock_file
)))
315 die("Unable to write new index file");