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 --
25 * which will force all existing *.h files to be replaced with
26 * their cached copies. If an empty command line implied "all",
27 * then this would force-refresh everything in the cache, which
30 * Oh, and the "--" is just a good idea when you know the rest
31 * will be filenames. Just so that you wouldn't have a filename
32 * of "-a" causing problems (not possible in the above example,
33 * but get used to it in scripting!).
37 static const char *prefix
;
38 static int prefix_length
;
40 static struct checkout state
= {
49 static int checkout_file(const char *name
)
51 int pos
= cache_name_pos(name
, strlen(name
));
56 "git-checkout-index: %s is %s.\n",
59 !strcmp(active_cache
[pos
]->name
, name
)) ?
60 "unmerged" : "not in the cache");
64 return checkout_entry(active_cache
[pos
], &state
);
67 static int checkout_all(void)
71 for (i
= 0; i
< active_nr
; i
++) {
72 struct cache_entry
*ce
= active_cache
[i
];
75 if (prefix
&& *prefix
&&
76 ( ce_namelen(ce
) <= prefix_length
||
77 memcmp(prefix
, ce
->name
, prefix_length
) ))
79 if (checkout_entry(ce
, &state
) < 0)
83 /* we have already done our error reporting.
84 * exit with the same code as die().
90 static const char checkout_cache_usage
[] =
91 "git-checkout-index [-u] [-q] [-a] [-f] [-n] [--prefix=<string>] [--] <file>...";
93 static struct cache_file cache_file
;
95 int main(int argc
, char **argv
)
101 prefix
= setup_git_directory();
102 prefix_length
= prefix
? strlen(prefix
) : 0;
104 if (read_cache() < 0) {
105 die("invalid cache");
108 for (i
= 1; i
< argc
; i
++) {
109 const char *arg
= argv
[i
];
111 if (!strcmp(arg
, "--")) {
115 if (!strcmp(arg
, "-a") || !strcmp(arg
, "--all")) {
119 if (!strcmp(arg
, "-f") || !strcmp(arg
, "--force")) {
123 if (!strcmp(arg
, "-q") || !strcmp(arg
, "--quiet")) {
127 if (!strcmp(arg
, "-n") || !strcmp(arg
, "--no-create")) {
131 if (!strcmp(arg
, "-u") || !strcmp(arg
, "--index")) {
132 state
.refresh_cache
= 1;
134 newfd
= hold_index_file_for_update
138 die("cannot open index.lock file.");
141 if (!memcmp(arg
, "--prefix=", 9)) {
142 state
.base_dir
= arg
+9;
143 state
.base_dir_len
= strlen(state
.base_dir
);
147 usage(checkout_cache_usage
);
151 if (state
.base_dir_len
) {
152 /* when --prefix is specified we do not
153 * want to update cache.
155 if (state
.refresh_cache
) {
156 close(newfd
); newfd
= -1;
157 rollback_index_file(&cache_file
);
159 state
.refresh_cache
= 0;
162 /* Check out named files first */
163 for ( ; i
< argc
; i
++) {
164 const char *arg
= argv
[i
];
167 die("git-checkout-index: don't mix '--all' and explicit filenames");
168 checkout_file(prefix_path(prefix
, prefix_length
, arg
));
175 (write_cache(newfd
, active_cache
, active_nr
) ||
176 commit_index_file(&cache_file
)))
177 die("Unable to write new cachefile");