Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Check-out files from the "current cache directory" |
| 3 | * |
| 4 | * Copyright (C) 2005 Linus Torvalds |
| 5 | * |
| 6 | * Careful: order of argument flags does matter. For example, |
| 7 | * |
Junio C Hamano | 215a7ad | 2005-09-07 17:26:23 -0700 | [diff] [blame] | 8 | * git-checkout-index -a -f file.c |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 9 | * |
| 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). |
| 14 | * |
Junio C Hamano | 215a7ad | 2005-09-07 17:26:23 -0700 | [diff] [blame] | 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". |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 18 | * |
| 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 |
| 22 | * |
Junio C Hamano | 215a7ad | 2005-09-07 17:26:23 -0700 | [diff] [blame] | 23 | * find . -name '*.h' -print0 | xargs -0 git-checkout-index -f -- |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 24 | * |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 25 | * or: |
| 26 | * |
| 27 | * find . -name '*.h' -print0 | git-checkout-index -f -z --stdin |
| 28 | * |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 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 |
| 32 | * was not the point. |
| 33 | * |
| 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!). |
| 38 | */ |
Peter Hagervall | baffc0e | 2007-07-15 01:14:45 +0200 | [diff] [blame] | 39 | #include "builtin.h" |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 40 | #include "cache.h" |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 41 | #include "quote.h" |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 42 | #include "cache-tree.h" |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 43 | |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 44 | #define CHECKOUT_ALL 4 |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 45 | static int line_termination = '\n'; |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 46 | static int checkout_stage; /* default to checkout stage0 */ |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 47 | static int to_tempfile; |
Jonas Fonseca | 095c424 | 2006-08-26 16:09:17 +0200 | [diff] [blame] | 48 | static char topath[4][PATH_MAX + 1]; |
Junio C Hamano | c3e9a65 | 2005-11-26 00:22:48 -0800 | [diff] [blame] | 49 | |
Shawn Pearce | 344c52a | 2006-07-08 14:34:02 -0400 | [diff] [blame] | 50 | static struct checkout state; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 51 | |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 52 | static void write_tempfile_record(const char *name, int prefix_length) |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 53 | { |
| 54 | int i; |
| 55 | |
| 56 | if (CHECKOUT_ALL == checkout_stage) { |
| 57 | for (i = 1; i < 4; i++) { |
| 58 | if (i > 1) |
| 59 | putchar(' '); |
| 60 | if (topath[i][0]) |
| 61 | fputs(topath[i], stdout); |
| 62 | else |
| 63 | putchar('.'); |
| 64 | } |
| 65 | } else |
| 66 | fputs(topath[checkout_stage], stdout); |
| 67 | |
| 68 | putchar('\t'); |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 69 | write_name_quoted(name + prefix_length, stdout, line_termination); |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 70 | |
| 71 | for (i = 0; i < 4; i++) { |
| 72 | topath[i][0] = 0; |
| 73 | } |
| 74 | } |
| 75 | |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 76 | static int checkout_file(const char *name, int prefix_length) |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 77 | { |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 78 | int namelen = strlen(name); |
| 79 | int pos = cache_name_pos(name, namelen); |
| 80 | int has_same_name = 0; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 81 | int did_checkout = 0; |
| 82 | int errs = 0; |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 83 | |
| 84 | if (pos < 0) |
| 85 | pos = -pos - 1; |
| 86 | |
| 87 | while (pos < active_nr) { |
| 88 | struct cache_entry *ce = active_cache[pos]; |
Junio C Hamano | f4f9ada | 2005-12-13 21:39:56 -0800 | [diff] [blame] | 89 | if (ce_namelen(ce) != namelen || |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 90 | memcmp(ce->name, name, namelen)) |
| 91 | break; |
| 92 | has_same_name = 1; |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 93 | pos++; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 94 | if (ce_stage(ce) != checkout_stage |
| 95 | && (CHECKOUT_ALL != checkout_stage || !ce_stage(ce))) |
| 96 | continue; |
| 97 | did_checkout = 1; |
| 98 | if (checkout_entry(ce, &state, |
| 99 | to_tempfile ? topath[ce_stage(ce)] : NULL) < 0) |
| 100 | errs++; |
| 101 | } |
| 102 | |
| 103 | if (did_checkout) { |
| 104 | if (to_tempfile) |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 105 | write_tempfile_record(name, prefix_length); |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 106 | return errs > 0 ? -1 : 0; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 107 | } |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 108 | |
| 109 | if (!state.quiet) { |
| 110 | fprintf(stderr, "git-checkout-index: %s ", name); |
| 111 | if (!has_same_name) |
| 112 | fprintf(stderr, "is not in the cache"); |
| 113 | else if (checkout_stage) |
| 114 | fprintf(stderr, "does not exist at stage %d", |
| 115 | checkout_stage); |
| 116 | else |
| 117 | fprintf(stderr, "is unmerged"); |
| 118 | fputc('\n', stderr); |
| 119 | } |
| 120 | return -1; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 121 | } |
| 122 | |
David Rientjes | f7f0fbf | 2006-08-14 13:20:12 -0700 | [diff] [blame] | 123 | static void checkout_all(const char *prefix, int prefix_length) |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 124 | { |
Junio C Hamano | 4b12dae | 2005-10-03 12:44:48 -0700 | [diff] [blame] | 125 | int i, errs = 0; |
Rene Scharfe | 5142db6 | 2006-04-02 13:13:01 +0200 | [diff] [blame] | 126 | struct cache_entry* last_ce = NULL; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 127 | |
| 128 | for (i = 0; i < active_nr ; i++) { |
| 129 | struct cache_entry *ce = active_cache[i]; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 130 | if (ce_stage(ce) != checkout_stage |
| 131 | && (CHECKOUT_ALL != checkout_stage || !ce_stage(ce))) |
Linus Torvalds | d9f98ee | 2005-04-17 18:39:14 -0700 | [diff] [blame] | 132 | continue; |
Junio C Hamano | c3e9a65 | 2005-11-26 00:22:48 -0800 | [diff] [blame] | 133 | if (prefix && *prefix && |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 134 | (ce_namelen(ce) <= prefix_length || |
| 135 | memcmp(prefix, ce->name, prefix_length))) |
Junio C Hamano | c3e9a65 | 2005-11-26 00:22:48 -0800 | [diff] [blame] | 136 | continue; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 137 | if (last_ce && to_tempfile) { |
| 138 | if (ce_namelen(last_ce) != ce_namelen(ce) |
| 139 | || memcmp(last_ce->name, ce->name, ce_namelen(ce))) |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 140 | write_tempfile_record(last_ce->name, prefix_length); |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 141 | } |
| 142 | if (checkout_entry(ce, &state, |
| 143 | to_tempfile ? topath[ce_stage(ce)] : NULL) < 0) |
Junio C Hamano | 4b12dae | 2005-10-03 12:44:48 -0700 | [diff] [blame] | 144 | errs++; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 145 | last_ce = ce; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 146 | } |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 147 | if (last_ce && to_tempfile) |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 148 | write_tempfile_record(last_ce->name, prefix_length); |
Junio C Hamano | 4b12dae | 2005-10-03 12:44:48 -0700 | [diff] [blame] | 149 | if (errs) |
| 150 | /* we have already done our error reporting. |
| 151 | * exit with the same code as die(). |
| 152 | */ |
| 153 | exit(128); |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Petr Baudis | 4d1f119 | 2005-07-29 11:01:26 +0200 | [diff] [blame] | 156 | static const char checkout_cache_usage[] = |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 157 | "git-checkout-index [-u] [-q] [-a] [-f] [-n] [--stage=[123]|all] [--prefix=<string>] [--temp] [--] <file>..."; |
Junio C Hamano | d46ad9c | 2005-07-13 20:25:07 -0700 | [diff] [blame] | 158 | |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 159 | static struct lock_file lock_file; |
James Bottomley | 31f584c | 2005-08-13 10:29:32 -0500 | [diff] [blame] | 160 | |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 161 | int cmd_checkout_index(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 162 | { |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 163 | int i; |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 164 | int newfd = -1; |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 165 | int all = 0; |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 166 | int read_from_stdin = 0; |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 167 | int prefix_length; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 168 | |
Junio C Hamano | 5f73076 | 2006-02-08 21:15:24 -0800 | [diff] [blame] | 169 | git_config(git_default_config); |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 170 | state.base_dir = ""; |
Junio C Hamano | c3e9a65 | 2005-11-26 00:22:48 -0800 | [diff] [blame] | 171 | prefix_length = prefix ? strlen(prefix) : 0; |
| 172 | |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 173 | if (read_cache() < 0) { |
Petr Baudis | 2de381f | 2005-04-13 02:28:48 -0700 | [diff] [blame] | 174 | die("invalid cache"); |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | for (i = 1; i < argc; i++) { |
| 178 | const char *arg = argv[i]; |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 179 | |
| 180 | if (!strcmp(arg, "--")) { |
| 181 | i++; |
| 182 | break; |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 183 | } |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 184 | if (!strcmp(arg, "-a") || !strcmp(arg, "--all")) { |
| 185 | all = 1; |
| 186 | continue; |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 187 | } |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 188 | if (!strcmp(arg, "-f") || !strcmp(arg, "--force")) { |
| 189 | state.force = 1; |
| 190 | continue; |
| 191 | } |
| 192 | if (!strcmp(arg, "-q") || !strcmp(arg, "--quiet")) { |
| 193 | state.quiet = 1; |
| 194 | continue; |
| 195 | } |
| 196 | if (!strcmp(arg, "-n") || !strcmp(arg, "--no-create")) { |
| 197 | state.not_new = 1; |
| 198 | continue; |
| 199 | } |
| 200 | if (!strcmp(arg, "-u") || !strcmp(arg, "--index")) { |
| 201 | state.refresh_cache = 1; |
| 202 | if (newfd < 0) |
Junio C Hamano | 30ca07a | 2007-03-31 23:09:02 -0700 | [diff] [blame] | 203 | newfd = hold_locked_index(&lock_file, 1); |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 204 | continue; |
| 205 | } |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 206 | if (!strcmp(arg, "-z")) { |
| 207 | line_termination = 0; |
| 208 | continue; |
| 209 | } |
| 210 | if (!strcmp(arg, "--stdin")) { |
| 211 | if (i != argc - 1) |
| 212 | die("--stdin must be at the end"); |
| 213 | read_from_stdin = 1; |
| 214 | i++; /* do not consider arg as a file name */ |
| 215 | break; |
| 216 | } |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 217 | if (!strcmp(arg, "--temp")) { |
| 218 | to_tempfile = 1; |
| 219 | continue; |
| 220 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 221 | if (!prefixcmp(arg, "--prefix=")) { |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 222 | state.base_dir = arg+9; |
| 223 | state.base_dir_len = strlen(state.base_dir); |
| 224 | continue; |
| 225 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 226 | if (!prefixcmp(arg, "--stage=")) { |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 227 | if (!strcmp(arg + 8, "all")) { |
| 228 | to_tempfile = 1; |
| 229 | checkout_stage = CHECKOUT_ALL; |
| 230 | } else { |
| 231 | int ch = arg[8]; |
| 232 | if ('1' <= ch && ch <= '3') |
| 233 | checkout_stage = arg[8] - '0'; |
| 234 | else |
| 235 | die("stage should be between 1 and 3 or all"); |
| 236 | } |
Junio C Hamano | 3bd348a | 2005-12-07 00:29:51 -0800 | [diff] [blame] | 237 | continue; |
| 238 | } |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 239 | if (arg[0] == '-') |
| 240 | usage(checkout_cache_usage); |
| 241 | break; |
| 242 | } |
| 243 | |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 244 | if (state.base_dir_len || to_tempfile) { |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 245 | /* when --prefix is specified we do not |
| 246 | * want to update cache. |
| 247 | */ |
| 248 | if (state.refresh_cache) { |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 249 | rollback_lock_file(&lock_file); |
Brandon Casey | 4ed7cd3 | 2008-01-16 13:12:46 -0600 | [diff] [blame] | 250 | newfd = -1; |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 251 | } |
| 252 | state.refresh_cache = 0; |
| 253 | } |
| 254 | |
| 255 | /* Check out named files first */ |
| 256 | for ( ; i < argc; i++) { |
| 257 | const char *arg = argv[i]; |
Junio C Hamano | dc46da2 | 2006-05-05 22:38:06 -0700 | [diff] [blame] | 258 | const char *p; |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 259 | |
| 260 | if (all) |
| 261 | die("git-checkout-index: don't mix '--all' and explicit filenames"); |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 262 | if (read_from_stdin) |
| 263 | die("git-checkout-index: don't mix '--stdin' and explicit filenames"); |
Junio C Hamano | dc46da2 | 2006-05-05 22:38:06 -0700 | [diff] [blame] | 264 | p = prefix_path(prefix, prefix_length, arg); |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 265 | checkout_file(p, prefix_length); |
Johannes Schindelin | be65e7d | 2006-05-07 00:02:53 +0200 | [diff] [blame] | 266 | if (p < arg || p > arg + strlen(arg)) |
Junio C Hamano | dc46da2 | 2006-05-05 22:38:06 -0700 | [diff] [blame] | 267 | free((char*)p); |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 268 | } |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 269 | |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 270 | if (read_from_stdin) { |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 271 | struct strbuf buf, nbuf; |
| 272 | |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 273 | if (all) |
| 274 | die("git-checkout-index: don't mix '--all' and '--stdin'"); |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 275 | |
Pierre Habouzit | f1696ee | 2007-09-10 12:35:04 +0200 | [diff] [blame] | 276 | strbuf_init(&buf, 0); |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 277 | strbuf_init(&nbuf, 0); |
| 278 | while (strbuf_getline(&buf, stdin, line_termination) != EOF) { |
Junio C Hamano | dc46da2 | 2006-05-05 22:38:06 -0700 | [diff] [blame] | 279 | const char *p; |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 280 | if (line_termination && buf.buf[0] == '"') { |
| 281 | strbuf_reset(&nbuf); |
| 282 | if (unquote_c_style(&nbuf, buf.buf, NULL)) |
| 283 | die("line is badly quoted"); |
| 284 | strbuf_swap(&buf, &nbuf); |
| 285 | } |
| 286 | p = prefix_path(prefix, prefix_length, buf.buf); |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 287 | checkout_file(p, prefix_length); |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 288 | if (p < buf.buf || p > buf.buf + buf.len) |
Junio C Hamano | dc46da2 | 2006-05-05 22:38:06 -0700 | [diff] [blame] | 289 | free((char *)p); |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 290 | } |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 291 | strbuf_release(&nbuf); |
Pierre Habouzit | e6c019d | 2007-09-17 11:19:04 +0200 | [diff] [blame] | 292 | strbuf_release(&buf); |
Shawn Pearce | 9debe63 | 2006-02-28 21:43:33 -0500 | [diff] [blame] | 293 | } |
| 294 | |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 295 | if (all) |
Junio C Hamano | e414156 | 2006-08-04 01:23:19 -0700 | [diff] [blame] | 296 | checkout_all(prefix, prefix_length); |
Linus Torvalds | a65a686 | 2005-10-17 17:32:12 -0700 | [diff] [blame] | 297 | |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 298 | if (0 <= newfd && |
| 299 | (write_cache(newfd, active_cache, active_nr) || |
Brandon Casey | 4ed7cd3 | 2008-01-16 13:12:46 -0600 | [diff] [blame] | 300 | commit_locked_index(&lock_file))) |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 301 | die("Unable to write new index file"); |
Linus Torvalds | 33db5f4 | 2005-04-09 09:53:05 -0700 | [diff] [blame] | 302 | return 0; |
| 303 | } |