]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/stash.c
Ensure index matches head before invoking merge machinery, round N
[thirdparty/git.git] / builtin / stash.c
1 #define USE_THE_INDEX_COMPATIBILITY_MACROS
2 #include "builtin.h"
3 #include "config.h"
4 #include "parse-options.h"
5 #include "refs.h"
6 #include "lockfile.h"
7 #include "cache-tree.h"
8 #include "unpack-trees.h"
9 #include "merge-recursive.h"
10 #include "argv-array.h"
11 #include "run-command.h"
12 #include "dir.h"
13 #include "rerere.h"
14 #include "revision.h"
15 #include "log-tree.h"
16 #include "diffcore.h"
17 #include "exec-cmd.h"
18
19 #define INCLUDE_ALL_FILES 2
20
21 static const char * const git_stash_usage[] = {
22 N_("git stash list [<options>]"),
23 N_("git stash show [<options>] [<stash>]"),
24 N_("git stash drop [-q|--quiet] [<stash>]"),
25 N_("git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]"),
26 N_("git stash branch <branchname> [<stash>]"),
27 N_("git stash clear"),
28 N_("git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
29 " [-u|--include-untracked] [-a|--all] [-m|--message <message>]\n"
30 " [--] [<pathspec>...]]"),
31 N_("git stash save [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
32 " [-u|--include-untracked] [-a|--all] [<message>]"),
33 NULL
34 };
35
36 static const char * const git_stash_list_usage[] = {
37 N_("git stash list [<options>]"),
38 NULL
39 };
40
41 static const char * const git_stash_show_usage[] = {
42 N_("git stash show [<options>] [<stash>]"),
43 NULL
44 };
45
46 static const char * const git_stash_drop_usage[] = {
47 N_("git stash drop [-q|--quiet] [<stash>]"),
48 NULL
49 };
50
51 static const char * const git_stash_pop_usage[] = {
52 N_("git stash pop [--index] [-q|--quiet] [<stash>]"),
53 NULL
54 };
55
56 static const char * const git_stash_apply_usage[] = {
57 N_("git stash apply [--index] [-q|--quiet] [<stash>]"),
58 NULL
59 };
60
61 static const char * const git_stash_branch_usage[] = {
62 N_("git stash branch <branchname> [<stash>]"),
63 NULL
64 };
65
66 static const char * const git_stash_clear_usage[] = {
67 N_("git stash clear"),
68 NULL
69 };
70
71 static const char * const git_stash_store_usage[] = {
72 N_("git stash store [-m|--message <message>] [-q|--quiet] <commit>"),
73 NULL
74 };
75
76 static const char * const git_stash_push_usage[] = {
77 N_("git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
78 " [-u|--include-untracked] [-a|--all] [-m|--message <message>]\n"
79 " [--] [<pathspec>...]]"),
80 NULL
81 };
82
83 static const char * const git_stash_save_usage[] = {
84 N_("git stash save [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
85 " [-u|--include-untracked] [-a|--all] [<message>]"),
86 NULL
87 };
88
89 static const char *ref_stash = "refs/stash";
90 static struct strbuf stash_index_path = STRBUF_INIT;
91
92 /*
93 * w_commit is set to the commit containing the working tree
94 * b_commit is set to the base commit
95 * i_commit is set to the commit containing the index tree
96 * u_commit is set to the commit containing the untracked files tree
97 * w_tree is set to the working tree
98 * b_tree is set to the base tree
99 * i_tree is set to the index tree
100 * u_tree is set to the untracked files tree
101 */
102 struct stash_info {
103 struct object_id w_commit;
104 struct object_id b_commit;
105 struct object_id i_commit;
106 struct object_id u_commit;
107 struct object_id w_tree;
108 struct object_id b_tree;
109 struct object_id i_tree;
110 struct object_id u_tree;
111 struct strbuf revision;
112 int is_stash_ref;
113 int has_u;
114 };
115
116 static void free_stash_info(struct stash_info *info)
117 {
118 strbuf_release(&info->revision);
119 }
120
121 static void assert_stash_like(struct stash_info *info, const char *revision)
122 {
123 if (get_oidf(&info->b_commit, "%s^1", revision) ||
124 get_oidf(&info->w_tree, "%s:", revision) ||
125 get_oidf(&info->b_tree, "%s^1:", revision) ||
126 get_oidf(&info->i_tree, "%s^2:", revision))
127 die(_("'%s' is not a stash-like commit"), revision);
128 }
129
130 static int get_stash_info(struct stash_info *info, int argc, const char **argv)
131 {
132 int ret;
133 char *end_of_rev;
134 char *expanded_ref;
135 const char *revision;
136 const char *commit = NULL;
137 struct object_id dummy;
138 struct strbuf symbolic = STRBUF_INIT;
139
140 if (argc > 1) {
141 int i;
142 struct strbuf refs_msg = STRBUF_INIT;
143
144 for (i = 0; i < argc; i++)
145 strbuf_addf(&refs_msg, " '%s'", argv[i]);
146
147 fprintf_ln(stderr, _("Too many revisions specified:%s"),
148 refs_msg.buf);
149 strbuf_release(&refs_msg);
150
151 return -1;
152 }
153
154 if (argc == 1)
155 commit = argv[0];
156
157 strbuf_init(&info->revision, 0);
158 if (!commit) {
159 if (!ref_exists(ref_stash)) {
160 free_stash_info(info);
161 fprintf_ln(stderr, _("No stash entries found."));
162 return -1;
163 }
164
165 strbuf_addf(&info->revision, "%s@{0}", ref_stash);
166 } else if (strspn(commit, "0123456789") == strlen(commit)) {
167 strbuf_addf(&info->revision, "%s@{%s}", ref_stash, commit);
168 } else {
169 strbuf_addstr(&info->revision, commit);
170 }
171
172 revision = info->revision.buf;
173
174 if (get_oid(revision, &info->w_commit)) {
175 error(_("%s is not a valid reference"), revision);
176 free_stash_info(info);
177 return -1;
178 }
179
180 assert_stash_like(info, revision);
181
182 info->has_u = !get_oidf(&info->u_tree, "%s^3:", revision);
183
184 end_of_rev = strchrnul(revision, '@');
185 strbuf_add(&symbolic, revision, end_of_rev - revision);
186
187 ret = dwim_ref(symbolic.buf, symbolic.len, &dummy, &expanded_ref);
188 strbuf_release(&symbolic);
189 switch (ret) {
190 case 0: /* Not found, but valid ref */
191 info->is_stash_ref = 0;
192 break;
193 case 1:
194 info->is_stash_ref = !strcmp(expanded_ref, ref_stash);
195 break;
196 default: /* Invalid or ambiguous */
197 free_stash_info(info);
198 }
199
200 free(expanded_ref);
201 return !(ret == 0 || ret == 1);
202 }
203
204 static int do_clear_stash(void)
205 {
206 struct object_id obj;
207 if (get_oid(ref_stash, &obj))
208 return 0;
209
210 return delete_ref(NULL, ref_stash, &obj, 0);
211 }
212
213 static int clear_stash(int argc, const char **argv, const char *prefix)
214 {
215 struct option options[] = {
216 OPT_END()
217 };
218
219 argc = parse_options(argc, argv, prefix, options,
220 git_stash_clear_usage,
221 PARSE_OPT_STOP_AT_NON_OPTION);
222
223 if (argc)
224 return error(_("git stash clear with parameters is "
225 "unimplemented"));
226
227 return do_clear_stash();
228 }
229
230 static int reset_tree(struct object_id *i_tree, int update, int reset)
231 {
232 int nr_trees = 1;
233 struct unpack_trees_options opts;
234 struct tree_desc t[MAX_UNPACK_TREES];
235 struct tree *tree;
236 struct lock_file lock_file = LOCK_INIT;
237
238 read_cache_preload(NULL);
239 if (refresh_cache(REFRESH_QUIET))
240 return -1;
241
242 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
243
244 memset(&opts, 0, sizeof(opts));
245
246 tree = parse_tree_indirect(i_tree);
247 if (parse_tree(tree))
248 return -1;
249
250 init_tree_desc(t, tree->buffer, tree->size);
251
252 opts.head_idx = 1;
253 opts.src_index = &the_index;
254 opts.dst_index = &the_index;
255 opts.merge = 1;
256 opts.reset = reset;
257 opts.update = update;
258 opts.fn = oneway_merge;
259
260 if (unpack_trees(nr_trees, t, &opts))
261 return -1;
262
263 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
264 return error(_("unable to write new index file"));
265
266 return 0;
267 }
268
269 static int diff_tree_binary(struct strbuf *out, struct object_id *w_commit)
270 {
271 struct child_process cp = CHILD_PROCESS_INIT;
272 const char *w_commit_hex = oid_to_hex(w_commit);
273
274 /*
275 * Diff-tree would not be very hard to replace with a native function,
276 * however it should be done together with apply_cached.
277 */
278 cp.git_cmd = 1;
279 argv_array_pushl(&cp.args, "diff-tree", "--binary", NULL);
280 argv_array_pushf(&cp.args, "%s^2^..%s^2", w_commit_hex, w_commit_hex);
281
282 return pipe_command(&cp, NULL, 0, out, 0, NULL, 0);
283 }
284
285 static int apply_cached(struct strbuf *out)
286 {
287 struct child_process cp = CHILD_PROCESS_INIT;
288
289 /*
290 * Apply currently only reads either from stdin or a file, thus
291 * apply_all_patches would have to be updated to optionally take a
292 * buffer.
293 */
294 cp.git_cmd = 1;
295 argv_array_pushl(&cp.args, "apply", "--cached", NULL);
296 return pipe_command(&cp, out->buf, out->len, NULL, 0, NULL, 0);
297 }
298
299 static int reset_head(void)
300 {
301 struct child_process cp = CHILD_PROCESS_INIT;
302
303 /*
304 * Reset is overall quite simple, however there is no current public
305 * API for resetting.
306 */
307 cp.git_cmd = 1;
308 argv_array_push(&cp.args, "reset");
309
310 return run_command(&cp);
311 }
312
313 static void add_diff_to_buf(struct diff_queue_struct *q,
314 struct diff_options *options,
315 void *data)
316 {
317 int i;
318
319 for (i = 0; i < q->nr; i++) {
320 strbuf_addstr(data, q->queue[i]->one->path);
321
322 /* NUL-terminate: will be fed to update-index -z */
323 strbuf_addch(data, '\0');
324 }
325 }
326
327 static int get_newly_staged(struct strbuf *out, struct object_id *c_tree)
328 {
329 struct child_process cp = CHILD_PROCESS_INIT;
330 const char *c_tree_hex = oid_to_hex(c_tree);
331
332 /*
333 * diff-index is very similar to diff-tree above, and should be
334 * converted together with update_index.
335 */
336 cp.git_cmd = 1;
337 argv_array_pushl(&cp.args, "diff-index", "--cached", "--name-only",
338 "--diff-filter=A", NULL);
339 argv_array_push(&cp.args, c_tree_hex);
340 return pipe_command(&cp, NULL, 0, out, 0, NULL, 0);
341 }
342
343 static int update_index(struct strbuf *out)
344 {
345 struct child_process cp = CHILD_PROCESS_INIT;
346
347 /*
348 * Update-index is very complicated and may need to have a public
349 * function exposed in order to remove this forking.
350 */
351 cp.git_cmd = 1;
352 argv_array_pushl(&cp.args, "update-index", "--add", "--stdin", NULL);
353 return pipe_command(&cp, out->buf, out->len, NULL, 0, NULL, 0);
354 }
355
356 static int restore_untracked(struct object_id *u_tree)
357 {
358 int res;
359 struct child_process cp = CHILD_PROCESS_INIT;
360
361 /*
362 * We need to run restore files from a given index, but without
363 * affecting the current index, so we use GIT_INDEX_FILE with
364 * run_command to fork processes that will not interfere.
365 */
366 cp.git_cmd = 1;
367 argv_array_push(&cp.args, "read-tree");
368 argv_array_push(&cp.args, oid_to_hex(u_tree));
369 argv_array_pushf(&cp.env_array, "GIT_INDEX_FILE=%s",
370 stash_index_path.buf);
371 if (run_command(&cp)) {
372 remove_path(stash_index_path.buf);
373 return -1;
374 }
375
376 child_process_init(&cp);
377 cp.git_cmd = 1;
378 argv_array_pushl(&cp.args, "checkout-index", "--all", NULL);
379 argv_array_pushf(&cp.env_array, "GIT_INDEX_FILE=%s",
380 stash_index_path.buf);
381
382 res = run_command(&cp);
383 remove_path(stash_index_path.buf);
384 return res;
385 }
386
387 static int do_apply_stash(const char *prefix, struct stash_info *info,
388 int index, int quiet)
389 {
390 int ret;
391 int has_index = index;
392 struct merge_options o;
393 struct object_id c_tree;
394 struct object_id index_tree;
395 struct commit *result;
396 const struct object_id *bases[1];
397
398 read_cache_preload(NULL);
399 if (refresh_cache(REFRESH_QUIET))
400 return -1;
401
402 if (write_cache_as_tree(&c_tree, 0, NULL))
403 return error(_("cannot apply a stash in the middle of a merge"));
404
405 if (index) {
406 if (oideq(&info->b_tree, &info->i_tree) ||
407 oideq(&c_tree, &info->i_tree)) {
408 has_index = 0;
409 } else {
410 struct strbuf out = STRBUF_INIT;
411
412 if (diff_tree_binary(&out, &info->w_commit)) {
413 strbuf_release(&out);
414 return error(_("could not generate diff %s^!."),
415 oid_to_hex(&info->w_commit));
416 }
417
418 ret = apply_cached(&out);
419 strbuf_release(&out);
420 if (ret)
421 return error(_("conflicts in index."
422 "Try without --index."));
423
424 discard_cache();
425 read_cache();
426 if (write_cache_as_tree(&index_tree, 0, NULL))
427 return error(_("could not save index tree"));
428
429 reset_head();
430 discard_cache();
431 read_cache();
432 }
433 }
434
435 if (info->has_u && restore_untracked(&info->u_tree))
436 return error(_("could not restore untracked files from stash"));
437
438 init_merge_options(&o, the_repository);
439
440 o.branch1 = "Updated upstream";
441 o.branch2 = "Stashed changes";
442
443 if (oideq(&info->b_tree, &c_tree))
444 o.branch1 = "Version stash was based on";
445
446 if (quiet)
447 o.verbosity = 0;
448
449 if (o.verbosity >= 3)
450 printf_ln(_("Merging %s with %s"), o.branch1, o.branch2);
451
452 bases[0] = &info->b_tree;
453
454 ret = merge_recursive_generic(&o, &c_tree, &info->w_tree, 1, bases,
455 &result);
456 if (ret) {
457 rerere(0);
458
459 if (index)
460 fprintf_ln(stderr, _("Index was not unstashed."));
461
462 return ret;
463 }
464
465 if (has_index) {
466 if (reset_tree(&index_tree, 0, 0))
467 return -1;
468 } else {
469 struct strbuf out = STRBUF_INIT;
470
471 if (get_newly_staged(&out, &c_tree)) {
472 strbuf_release(&out);
473 return -1;
474 }
475
476 if (reset_tree(&c_tree, 0, 1)) {
477 strbuf_release(&out);
478 return -1;
479 }
480
481 ret = update_index(&out);
482 strbuf_release(&out);
483 if (ret)
484 return -1;
485
486 discard_cache();
487 }
488
489 if (quiet) {
490 if (refresh_cache(REFRESH_QUIET))
491 warning("could not refresh index");
492 } else {
493 struct child_process cp = CHILD_PROCESS_INIT;
494
495 /*
496 * Status is quite simple and could be replaced with calls to
497 * wt_status in the future, but it adds complexities which may
498 * require more tests.
499 */
500 cp.git_cmd = 1;
501 cp.dir = prefix;
502 argv_array_push(&cp.args, "status");
503 run_command(&cp);
504 }
505
506 return 0;
507 }
508
509 static int apply_stash(int argc, const char **argv, const char *prefix)
510 {
511 int ret;
512 int quiet = 0;
513 int index = 0;
514 struct stash_info info;
515 struct option options[] = {
516 OPT__QUIET(&quiet, N_("be quiet, only report errors")),
517 OPT_BOOL(0, "index", &index,
518 N_("attempt to recreate the index")),
519 OPT_END()
520 };
521
522 argc = parse_options(argc, argv, prefix, options,
523 git_stash_apply_usage, 0);
524
525 if (get_stash_info(&info, argc, argv))
526 return -1;
527
528 ret = do_apply_stash(prefix, &info, index, quiet);
529 free_stash_info(&info);
530 return ret;
531 }
532
533 static int do_drop_stash(struct stash_info *info, int quiet)
534 {
535 int ret;
536 struct child_process cp_reflog = CHILD_PROCESS_INIT;
537 struct child_process cp = CHILD_PROCESS_INIT;
538
539 /*
540 * reflog does not provide a simple function for deleting refs. One will
541 * need to be added to avoid implementing too much reflog code here
542 */
543
544 cp_reflog.git_cmd = 1;
545 argv_array_pushl(&cp_reflog.args, "reflog", "delete", "--updateref",
546 "--rewrite", NULL);
547 argv_array_push(&cp_reflog.args, info->revision.buf);
548 ret = run_command(&cp_reflog);
549 if (!ret) {
550 if (!quiet)
551 printf_ln(_("Dropped %s (%s)"), info->revision.buf,
552 oid_to_hex(&info->w_commit));
553 } else {
554 return error(_("%s: Could not drop stash entry"),
555 info->revision.buf);
556 }
557
558 /*
559 * This could easily be replaced by get_oid, but currently it will throw
560 * a fatal error when a reflog is empty, which we can not recover from.
561 */
562 cp.git_cmd = 1;
563 /* Even though --quiet is specified, rev-parse still outputs the hash */
564 cp.no_stdout = 1;
565 argv_array_pushl(&cp.args, "rev-parse", "--verify", "--quiet", NULL);
566 argv_array_pushf(&cp.args, "%s@{0}", ref_stash);
567 ret = run_command(&cp);
568
569 /* do_clear_stash if we just dropped the last stash entry */
570 if (ret)
571 do_clear_stash();
572
573 return 0;
574 }
575
576 static void assert_stash_ref(struct stash_info *info)
577 {
578 if (!info->is_stash_ref) {
579 error(_("'%s' is not a stash reference"), info->revision.buf);
580 free_stash_info(info);
581 exit(1);
582 }
583 }
584
585 static int drop_stash(int argc, const char **argv, const char *prefix)
586 {
587 int ret;
588 int quiet = 0;
589 struct stash_info info;
590 struct option options[] = {
591 OPT__QUIET(&quiet, N_("be quiet, only report errors")),
592 OPT_END()
593 };
594
595 argc = parse_options(argc, argv, prefix, options,
596 git_stash_drop_usage, 0);
597
598 if (get_stash_info(&info, argc, argv))
599 return -1;
600
601 assert_stash_ref(&info);
602
603 ret = do_drop_stash(&info, quiet);
604 free_stash_info(&info);
605 return ret;
606 }
607
608 static int pop_stash(int argc, const char **argv, const char *prefix)
609 {
610 int ret;
611 int index = 0;
612 int quiet = 0;
613 struct stash_info info;
614 struct option options[] = {
615 OPT__QUIET(&quiet, N_("be quiet, only report errors")),
616 OPT_BOOL(0, "index", &index,
617 N_("attempt to recreate the index")),
618 OPT_END()
619 };
620
621 argc = parse_options(argc, argv, prefix, options,
622 git_stash_pop_usage, 0);
623
624 if (get_stash_info(&info, argc, argv))
625 return -1;
626
627 assert_stash_ref(&info);
628 if ((ret = do_apply_stash(prefix, &info, index, quiet)))
629 printf_ln(_("The stash entry is kept in case "
630 "you need it again."));
631 else
632 ret = do_drop_stash(&info, quiet);
633
634 free_stash_info(&info);
635 return ret;
636 }
637
638 static int branch_stash(int argc, const char **argv, const char *prefix)
639 {
640 int ret;
641 const char *branch = NULL;
642 struct stash_info info;
643 struct child_process cp = CHILD_PROCESS_INIT;
644 struct option options[] = {
645 OPT_END()
646 };
647
648 argc = parse_options(argc, argv, prefix, options,
649 git_stash_branch_usage, 0);
650
651 if (!argc) {
652 fprintf_ln(stderr, _("No branch name specified"));
653 return -1;
654 }
655
656 branch = argv[0];
657
658 if (get_stash_info(&info, argc - 1, argv + 1))
659 return -1;
660
661 cp.git_cmd = 1;
662 argv_array_pushl(&cp.args, "checkout", "-b", NULL);
663 argv_array_push(&cp.args, branch);
664 argv_array_push(&cp.args, oid_to_hex(&info.b_commit));
665 ret = run_command(&cp);
666 if (!ret)
667 ret = do_apply_stash(prefix, &info, 1, 0);
668 if (!ret && info.is_stash_ref)
669 ret = do_drop_stash(&info, 0);
670
671 free_stash_info(&info);
672
673 return ret;
674 }
675
676 static int list_stash(int argc, const char **argv, const char *prefix)
677 {
678 struct child_process cp = CHILD_PROCESS_INIT;
679 struct option options[] = {
680 OPT_END()
681 };
682
683 argc = parse_options(argc, argv, prefix, options,
684 git_stash_list_usage,
685 PARSE_OPT_KEEP_UNKNOWN);
686
687 if (!ref_exists(ref_stash))
688 return 0;
689
690 cp.git_cmd = 1;
691 argv_array_pushl(&cp.args, "log", "--format=%gd: %gs", "-g",
692 "--first-parent", "-m", NULL);
693 argv_array_pushv(&cp.args, argv);
694 argv_array_push(&cp.args, ref_stash);
695 argv_array_push(&cp.args, "--");
696 return run_command(&cp);
697 }
698
699 static int show_stat = 1;
700 static int show_patch;
701
702 static int git_stash_config(const char *var, const char *value, void *cb)
703 {
704 if (!strcmp(var, "stash.showstat")) {
705 show_stat = git_config_bool(var, value);
706 return 0;
707 }
708 if (!strcmp(var, "stash.showpatch")) {
709 show_patch = git_config_bool(var, value);
710 return 0;
711 }
712 return git_default_config(var, value, cb);
713 }
714
715 static int show_stash(int argc, const char **argv, const char *prefix)
716 {
717 int i;
718 int ret = 0;
719 struct stash_info info;
720 struct rev_info rev;
721 struct argv_array stash_args = ARGV_ARRAY_INIT;
722 struct argv_array revision_args = ARGV_ARRAY_INIT;
723 struct option options[] = {
724 OPT_END()
725 };
726
727 init_diff_ui_defaults();
728 git_config(git_diff_ui_config, NULL);
729 init_revisions(&rev, prefix);
730
731 argv_array_push(&revision_args, argv[0]);
732 for (i = 1; i < argc; i++) {
733 if (argv[i][0] != '-')
734 argv_array_push(&stash_args, argv[i]);
735 else
736 argv_array_push(&revision_args, argv[i]);
737 }
738
739 ret = get_stash_info(&info, stash_args.argc, stash_args.argv);
740 argv_array_clear(&stash_args);
741 if (ret)
742 return -1;
743
744 /*
745 * The config settings are applied only if there are not passed
746 * any options.
747 */
748 if (revision_args.argc == 1) {
749 git_config(git_stash_config, NULL);
750 if (show_stat)
751 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT;
752
753 if (show_patch)
754 rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
755
756 if (!show_stat && !show_patch) {
757 free_stash_info(&info);
758 return 0;
759 }
760 }
761
762 argc = setup_revisions(revision_args.argc, revision_args.argv, &rev, NULL);
763 if (argc > 1) {
764 free_stash_info(&info);
765 usage_with_options(git_stash_show_usage, options);
766 }
767 if (!rev.diffopt.output_format) {
768 rev.diffopt.output_format = DIFF_FORMAT_PATCH;
769 diff_setup_done(&rev.diffopt);
770 }
771
772 rev.diffopt.flags.recursive = 1;
773 setup_diff_pager(&rev.diffopt);
774 diff_tree_oid(&info.b_commit, &info.w_commit, "", &rev.diffopt);
775 log_tree_diff_flush(&rev);
776
777 free_stash_info(&info);
778 return diff_result_code(&rev.diffopt, 0);
779 }
780
781 static int do_store_stash(const struct object_id *w_commit, const char *stash_msg,
782 int quiet)
783 {
784 if (!stash_msg)
785 stash_msg = "Created via \"git stash store\".";
786
787 if (update_ref(stash_msg, ref_stash, w_commit, NULL,
788 REF_FORCE_CREATE_REFLOG,
789 quiet ? UPDATE_REFS_QUIET_ON_ERR :
790 UPDATE_REFS_MSG_ON_ERR)) {
791 if (!quiet) {
792 fprintf_ln(stderr, _("Cannot update %s with %s"),
793 ref_stash, oid_to_hex(w_commit));
794 }
795 return -1;
796 }
797
798 return 0;
799 }
800
801 static int store_stash(int argc, const char **argv, const char *prefix)
802 {
803 int quiet = 0;
804 const char *stash_msg = NULL;
805 struct object_id obj;
806 struct object_context dummy;
807 struct option options[] = {
808 OPT__QUIET(&quiet, N_("be quiet")),
809 OPT_STRING('m', "message", &stash_msg, "message",
810 N_("stash message")),
811 OPT_END()
812 };
813
814 argc = parse_options(argc, argv, prefix, options,
815 git_stash_store_usage,
816 PARSE_OPT_KEEP_UNKNOWN);
817
818 if (argc != 1) {
819 if (!quiet)
820 fprintf_ln(stderr, _("\"git stash store\" requires one "
821 "<commit> argument"));
822 return -1;
823 }
824
825 if (get_oid_with_context(the_repository,
826 argv[0], quiet ? GET_OID_QUIETLY : 0, &obj,
827 &dummy)) {
828 if (!quiet)
829 fprintf_ln(stderr, _("Cannot update %s with %s"),
830 ref_stash, argv[0]);
831 return -1;
832 }
833
834 return do_store_stash(&obj, stash_msg, quiet);
835 }
836
837 static void add_pathspecs(struct argv_array *args,
838 const struct pathspec *ps) {
839 int i;
840
841 for (i = 0; i < ps->nr; i++)
842 argv_array_push(args, ps->items[i].original);
843 }
844
845 /*
846 * `untracked_files` will be filled with the names of untracked files.
847 * The return value is:
848 *
849 * = 0 if there are not any untracked files
850 * > 0 if there are untracked files
851 */
852 static int get_untracked_files(const struct pathspec *ps, int include_untracked,
853 struct strbuf *untracked_files)
854 {
855 int i;
856 int max_len;
857 int found = 0;
858 char *seen;
859 struct dir_struct dir;
860
861 memset(&dir, 0, sizeof(dir));
862 if (include_untracked != INCLUDE_ALL_FILES)
863 setup_standard_excludes(&dir);
864
865 seen = xcalloc(ps->nr, 1);
866
867 max_len = fill_directory(&dir, the_repository->index, ps);
868 for (i = 0; i < dir.nr; i++) {
869 struct dir_entry *ent = dir.entries[i];
870 if (dir_path_match(&the_index, ent, ps, max_len, seen)) {
871 found++;
872 strbuf_addstr(untracked_files, ent->name);
873 /* NUL-terminate: will be fed to update-index -z */
874 strbuf_addch(untracked_files, '\0');
875 }
876 free(ent);
877 }
878
879 free(seen);
880 free(dir.entries);
881 free(dir.ignored);
882 clear_directory(&dir);
883 return found;
884 }
885
886 /*
887 * The return value of `check_changes_tracked_files()` can be:
888 *
889 * < 0 if there was an error
890 * = 0 if there are no changes.
891 * > 0 if there are changes.
892 */
893 static int check_changes_tracked_files(const struct pathspec *ps)
894 {
895 int result;
896 struct rev_info rev;
897 struct object_id dummy;
898 int ret = 0;
899
900 /* No initial commit. */
901 if (get_oid("HEAD", &dummy))
902 return -1;
903
904 if (read_cache() < 0)
905 return -1;
906
907 init_revisions(&rev, NULL);
908 copy_pathspec(&rev.prune_data, ps);
909
910 rev.diffopt.flags.quick = 1;
911 rev.diffopt.flags.ignore_submodules = 1;
912 rev.abbrev = 0;
913
914 add_head_to_pending(&rev);
915 diff_setup_done(&rev.diffopt);
916
917 result = run_diff_index(&rev, 1);
918 if (diff_result_code(&rev.diffopt, result)) {
919 ret = 1;
920 goto done;
921 }
922
923 object_array_clear(&rev.pending);
924 result = run_diff_files(&rev, 0);
925 if (diff_result_code(&rev.diffopt, result)) {
926 ret = 1;
927 goto done;
928 }
929
930 done:
931 clear_pathspec(&rev.prune_data);
932 return ret;
933 }
934
935 /*
936 * The function will fill `untracked_files` with the names of untracked files
937 * It will return 1 if there were any changes and 0 if there were not.
938 */
939 static int check_changes(const struct pathspec *ps, int include_untracked,
940 struct strbuf *untracked_files)
941 {
942 int ret = 0;
943 if (check_changes_tracked_files(ps))
944 ret = 1;
945
946 if (include_untracked && get_untracked_files(ps, include_untracked,
947 untracked_files))
948 ret = 1;
949
950 return ret;
951 }
952
953 static int save_untracked_files(struct stash_info *info, struct strbuf *msg,
954 struct strbuf files)
955 {
956 int ret = 0;
957 struct strbuf untracked_msg = STRBUF_INIT;
958 struct child_process cp_upd_index = CHILD_PROCESS_INIT;
959 struct index_state istate = { NULL };
960
961 cp_upd_index.git_cmd = 1;
962 argv_array_pushl(&cp_upd_index.args, "update-index", "-z", "--add",
963 "--remove", "--stdin", NULL);
964 argv_array_pushf(&cp_upd_index.env_array, "GIT_INDEX_FILE=%s",
965 stash_index_path.buf);
966
967 strbuf_addf(&untracked_msg, "untracked files on %s\n", msg->buf);
968 if (pipe_command(&cp_upd_index, files.buf, files.len, NULL, 0,
969 NULL, 0)) {
970 ret = -1;
971 goto done;
972 }
973
974 if (write_index_as_tree(&info->u_tree, &istate, stash_index_path.buf, 0,
975 NULL)) {
976 ret = -1;
977 goto done;
978 }
979
980 if (commit_tree(untracked_msg.buf, untracked_msg.len,
981 &info->u_tree, NULL, &info->u_commit, NULL, NULL)) {
982 ret = -1;
983 goto done;
984 }
985
986 done:
987 discard_index(&istate);
988 strbuf_release(&untracked_msg);
989 remove_path(stash_index_path.buf);
990 return ret;
991 }
992
993 static int stash_patch(struct stash_info *info, const struct pathspec *ps,
994 struct strbuf *out_patch, int quiet)
995 {
996 int ret = 0;
997 struct child_process cp_read_tree = CHILD_PROCESS_INIT;
998 struct child_process cp_add_i = CHILD_PROCESS_INIT;
999 struct child_process cp_diff_tree = CHILD_PROCESS_INIT;
1000 struct index_state istate = { NULL };
1001
1002 remove_path(stash_index_path.buf);
1003
1004 cp_read_tree.git_cmd = 1;
1005 argv_array_pushl(&cp_read_tree.args, "read-tree", "HEAD", NULL);
1006 argv_array_pushf(&cp_read_tree.env_array, "GIT_INDEX_FILE=%s",
1007 stash_index_path.buf);
1008 if (run_command(&cp_read_tree)) {
1009 ret = -1;
1010 goto done;
1011 }
1012
1013 /* Find out what the user wants. */
1014 cp_add_i.git_cmd = 1;
1015 argv_array_pushl(&cp_add_i.args, "add--interactive", "--patch=stash",
1016 "--", NULL);
1017 add_pathspecs(&cp_add_i.args, ps);
1018 argv_array_pushf(&cp_add_i.env_array, "GIT_INDEX_FILE=%s",
1019 stash_index_path.buf);
1020 if (run_command(&cp_add_i)) {
1021 ret = -1;
1022 goto done;
1023 }
1024
1025 /* State of the working tree. */
1026 if (write_index_as_tree(&info->w_tree, &istate, stash_index_path.buf, 0,
1027 NULL)) {
1028 ret = -1;
1029 goto done;
1030 }
1031
1032 cp_diff_tree.git_cmd = 1;
1033 argv_array_pushl(&cp_diff_tree.args, "diff-tree", "-p", "HEAD",
1034 oid_to_hex(&info->w_tree), "--", NULL);
1035 if (pipe_command(&cp_diff_tree, NULL, 0, out_patch, 0, NULL, 0)) {
1036 ret = -1;
1037 goto done;
1038 }
1039
1040 if (!out_patch->len) {
1041 if (!quiet)
1042 fprintf_ln(stderr, _("No changes selected"));
1043 ret = 1;
1044 }
1045
1046 done:
1047 discard_index(&istate);
1048 remove_path(stash_index_path.buf);
1049 return ret;
1050 }
1051
1052 static int stash_working_tree(struct stash_info *info, const struct pathspec *ps)
1053 {
1054 int ret = 0;
1055 struct rev_info rev;
1056 struct child_process cp_upd_index = CHILD_PROCESS_INIT;
1057 struct strbuf diff_output = STRBUF_INIT;
1058 struct index_state istate = { NULL };
1059
1060 init_revisions(&rev, NULL);
1061 copy_pathspec(&rev.prune_data, ps);
1062
1063 set_alternate_index_output(stash_index_path.buf);
1064 if (reset_tree(&info->i_tree, 0, 0)) {
1065 ret = -1;
1066 goto done;
1067 }
1068 set_alternate_index_output(NULL);
1069
1070 rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
1071 rev.diffopt.format_callback = add_diff_to_buf;
1072 rev.diffopt.format_callback_data = &diff_output;
1073
1074 if (read_cache_preload(&rev.diffopt.pathspec) < 0) {
1075 ret = -1;
1076 goto done;
1077 }
1078
1079 add_pending_object(&rev, parse_object(the_repository, &info->b_commit),
1080 "");
1081 if (run_diff_index(&rev, 0)) {
1082 ret = -1;
1083 goto done;
1084 }
1085
1086 cp_upd_index.git_cmd = 1;
1087 argv_array_pushl(&cp_upd_index.args, "update-index", "-z", "--add",
1088 "--remove", "--stdin", NULL);
1089 argv_array_pushf(&cp_upd_index.env_array, "GIT_INDEX_FILE=%s",
1090 stash_index_path.buf);
1091
1092 if (pipe_command(&cp_upd_index, diff_output.buf, diff_output.len,
1093 NULL, 0, NULL, 0)) {
1094 ret = -1;
1095 goto done;
1096 }
1097
1098 if (write_index_as_tree(&info->w_tree, &istate, stash_index_path.buf, 0,
1099 NULL)) {
1100 ret = -1;
1101 goto done;
1102 }
1103
1104 done:
1105 discard_index(&istate);
1106 UNLEAK(rev);
1107 object_array_clear(&rev.pending);
1108 clear_pathspec(&rev.prune_data);
1109 strbuf_release(&diff_output);
1110 remove_path(stash_index_path.buf);
1111 return ret;
1112 }
1113
1114 static int do_create_stash(const struct pathspec *ps, struct strbuf *stash_msg_buf,
1115 int include_untracked, int patch_mode,
1116 struct stash_info *info, struct strbuf *patch,
1117 int quiet)
1118 {
1119 int ret = 0;
1120 int flags = 0;
1121 int untracked_commit_option = 0;
1122 const char *head_short_sha1 = NULL;
1123 const char *branch_ref = NULL;
1124 const char *branch_name = "(no branch)";
1125 struct commit *head_commit = NULL;
1126 struct commit_list *parents = NULL;
1127 struct strbuf msg = STRBUF_INIT;
1128 struct strbuf commit_tree_label = STRBUF_INIT;
1129 struct strbuf untracked_files = STRBUF_INIT;
1130
1131 prepare_fallback_ident("git stash", "git@stash");
1132
1133 read_cache_preload(NULL);
1134 refresh_cache(REFRESH_QUIET);
1135
1136 if (get_oid("HEAD", &info->b_commit)) {
1137 if (!quiet)
1138 fprintf_ln(stderr, _("You do not have "
1139 "the initial commit yet"));
1140 ret = -1;
1141 goto done;
1142 } else {
1143 head_commit = lookup_commit(the_repository, &info->b_commit);
1144 }
1145
1146 if (!check_changes(ps, include_untracked, &untracked_files)) {
1147 ret = 1;
1148 goto done;
1149 }
1150
1151 branch_ref = resolve_ref_unsafe("HEAD", 0, NULL, &flags);
1152 if (flags & REF_ISSYMREF)
1153 branch_name = strrchr(branch_ref, '/') + 1;
1154 head_short_sha1 = find_unique_abbrev(&head_commit->object.oid,
1155 DEFAULT_ABBREV);
1156 strbuf_addf(&msg, "%s: %s ", branch_name, head_short_sha1);
1157 pp_commit_easy(CMIT_FMT_ONELINE, head_commit, &msg);
1158
1159 strbuf_addf(&commit_tree_label, "index on %s\n", msg.buf);
1160 commit_list_insert(head_commit, &parents);
1161 if (write_cache_as_tree(&info->i_tree, 0, NULL) ||
1162 commit_tree(commit_tree_label.buf, commit_tree_label.len,
1163 &info->i_tree, parents, &info->i_commit, NULL, NULL)) {
1164 if (!quiet)
1165 fprintf_ln(stderr, _("Cannot save the current "
1166 "index state"));
1167 ret = -1;
1168 goto done;
1169 }
1170
1171 if (include_untracked) {
1172 if (save_untracked_files(info, &msg, untracked_files)) {
1173 if (!quiet)
1174 fprintf_ln(stderr, _("Cannot save "
1175 "the untracked files"));
1176 ret = -1;
1177 goto done;
1178 }
1179 untracked_commit_option = 1;
1180 }
1181 if (patch_mode) {
1182 ret = stash_patch(info, ps, patch, quiet);
1183 if (ret < 0) {
1184 if (!quiet)
1185 fprintf_ln(stderr, _("Cannot save the current "
1186 "worktree state"));
1187 goto done;
1188 } else if (ret > 0) {
1189 goto done;
1190 }
1191 } else {
1192 if (stash_working_tree(info, ps)) {
1193 if (!quiet)
1194 fprintf_ln(stderr, _("Cannot save the current "
1195 "worktree state"));
1196 ret = -1;
1197 goto done;
1198 }
1199 }
1200
1201 if (!stash_msg_buf->len)
1202 strbuf_addf(stash_msg_buf, "WIP on %s", msg.buf);
1203 else
1204 strbuf_insertf(stash_msg_buf, 0, "On %s: ", branch_name);
1205
1206 /*
1207 * `parents` will be empty after calling `commit_tree()`, so there is
1208 * no need to call `free_commit_list()`
1209 */
1210 parents = NULL;
1211 if (untracked_commit_option)
1212 commit_list_insert(lookup_commit(the_repository,
1213 &info->u_commit),
1214 &parents);
1215 commit_list_insert(lookup_commit(the_repository, &info->i_commit),
1216 &parents);
1217 commit_list_insert(head_commit, &parents);
1218
1219 if (commit_tree(stash_msg_buf->buf, stash_msg_buf->len, &info->w_tree,
1220 parents, &info->w_commit, NULL, NULL)) {
1221 if (!quiet)
1222 fprintf_ln(stderr, _("Cannot record "
1223 "working tree state"));
1224 ret = -1;
1225 goto done;
1226 }
1227
1228 done:
1229 strbuf_release(&commit_tree_label);
1230 strbuf_release(&msg);
1231 strbuf_release(&untracked_files);
1232 return ret;
1233 }
1234
1235 static int create_stash(int argc, const char **argv, const char *prefix)
1236 {
1237 int ret = 0;
1238 struct strbuf stash_msg_buf = STRBUF_INIT;
1239 struct stash_info info;
1240 struct pathspec ps;
1241
1242 /* Starting with argv[1], since argv[0] is "create" */
1243 strbuf_join_argv(&stash_msg_buf, argc - 1, ++argv, ' ');
1244
1245 memset(&ps, 0, sizeof(ps));
1246 if (!check_changes_tracked_files(&ps))
1247 return 0;
1248
1249 ret = do_create_stash(&ps, &stash_msg_buf, 0, 0, &info,
1250 NULL, 0);
1251 if (!ret)
1252 printf_ln("%s", oid_to_hex(&info.w_commit));
1253
1254 strbuf_release(&stash_msg_buf);
1255 return ret;
1256 }
1257
1258 static int do_push_stash(const struct pathspec *ps, const char *stash_msg, int quiet,
1259 int keep_index, int patch_mode, int include_untracked)
1260 {
1261 int ret = 0;
1262 struct stash_info info;
1263 struct strbuf patch = STRBUF_INIT;
1264 struct strbuf stash_msg_buf = STRBUF_INIT;
1265 struct strbuf untracked_files = STRBUF_INIT;
1266
1267 if (patch_mode && keep_index == -1)
1268 keep_index = 1;
1269
1270 if (patch_mode && include_untracked) {
1271 fprintf_ln(stderr, _("Can't use --patch and --include-untracked"
1272 " or --all at the same time"));
1273 ret = -1;
1274 goto done;
1275 }
1276
1277 read_cache_preload(NULL);
1278 if (!include_untracked && ps->nr) {
1279 int i;
1280 char *ps_matched = xcalloc(ps->nr, 1);
1281
1282 for (i = 0; i < active_nr; i++)
1283 ce_path_match(&the_index, active_cache[i], ps,
1284 ps_matched);
1285
1286 if (report_path_error(ps_matched, ps)) {
1287 fprintf_ln(stderr, _("Did you forget to 'git add'?"));
1288 ret = -1;
1289 free(ps_matched);
1290 goto done;
1291 }
1292 free(ps_matched);
1293 }
1294
1295 if (refresh_cache(REFRESH_QUIET)) {
1296 ret = -1;
1297 goto done;
1298 }
1299
1300 if (!check_changes(ps, include_untracked, &untracked_files)) {
1301 if (!quiet)
1302 printf_ln(_("No local changes to save"));
1303 goto done;
1304 }
1305
1306 if (!reflog_exists(ref_stash) && do_clear_stash()) {
1307 ret = -1;
1308 if (!quiet)
1309 fprintf_ln(stderr, _("Cannot initialize stash"));
1310 goto done;
1311 }
1312
1313 if (stash_msg)
1314 strbuf_addstr(&stash_msg_buf, stash_msg);
1315 if (do_create_stash(ps, &stash_msg_buf, include_untracked, patch_mode,
1316 &info, &patch, quiet)) {
1317 ret = -1;
1318 goto done;
1319 }
1320
1321 if (do_store_stash(&info.w_commit, stash_msg_buf.buf, 1)) {
1322 ret = -1;
1323 if (!quiet)
1324 fprintf_ln(stderr, _("Cannot save the current status"));
1325 goto done;
1326 }
1327
1328 if (!quiet)
1329 printf_ln(_("Saved working directory and index state %s"),
1330 stash_msg_buf.buf);
1331
1332 if (!patch_mode) {
1333 if (include_untracked && !ps->nr) {
1334 struct child_process cp = CHILD_PROCESS_INIT;
1335
1336 cp.git_cmd = 1;
1337 argv_array_pushl(&cp.args, "clean", "--force",
1338 "--quiet", "-d", NULL);
1339 if (include_untracked == INCLUDE_ALL_FILES)
1340 argv_array_push(&cp.args, "-x");
1341 if (run_command(&cp)) {
1342 ret = -1;
1343 goto done;
1344 }
1345 }
1346 discard_cache();
1347 if (ps->nr) {
1348 struct child_process cp_add = CHILD_PROCESS_INIT;
1349 struct child_process cp_diff = CHILD_PROCESS_INIT;
1350 struct child_process cp_apply = CHILD_PROCESS_INIT;
1351 struct strbuf out = STRBUF_INIT;
1352
1353 cp_add.git_cmd = 1;
1354 argv_array_push(&cp_add.args, "add");
1355 if (!include_untracked)
1356 argv_array_push(&cp_add.args, "-u");
1357 if (include_untracked == INCLUDE_ALL_FILES)
1358 argv_array_push(&cp_add.args, "--force");
1359 argv_array_push(&cp_add.args, "--");
1360 add_pathspecs(&cp_add.args, ps);
1361 if (run_command(&cp_add)) {
1362 ret = -1;
1363 goto done;
1364 }
1365
1366 cp_diff.git_cmd = 1;
1367 argv_array_pushl(&cp_diff.args, "diff-index", "-p",
1368 "--cached", "--binary", "HEAD", "--",
1369 NULL);
1370 add_pathspecs(&cp_diff.args, ps);
1371 if (pipe_command(&cp_diff, NULL, 0, &out, 0, NULL, 0)) {
1372 ret = -1;
1373 goto done;
1374 }
1375
1376 cp_apply.git_cmd = 1;
1377 argv_array_pushl(&cp_apply.args, "apply", "--index",
1378 "-R", NULL);
1379 if (pipe_command(&cp_apply, out.buf, out.len, NULL, 0,
1380 NULL, 0)) {
1381 ret = -1;
1382 goto done;
1383 }
1384 } else {
1385 struct child_process cp = CHILD_PROCESS_INIT;
1386 cp.git_cmd = 1;
1387 argv_array_pushl(&cp.args, "reset", "--hard", "-q",
1388 NULL);
1389 if (run_command(&cp)) {
1390 ret = -1;
1391 goto done;
1392 }
1393 }
1394
1395 if (keep_index == 1 && !is_null_oid(&info.i_tree)) {
1396 struct child_process cp = CHILD_PROCESS_INIT;
1397
1398 cp.git_cmd = 1;
1399 argv_array_pushl(&cp.args, "checkout", "--no-overlay",
1400 oid_to_hex(&info.i_tree), "--", NULL);
1401 if (!ps->nr)
1402 argv_array_push(&cp.args, ":/");
1403 else
1404 add_pathspecs(&cp.args, ps);
1405 if (run_command(&cp)) {
1406 ret = -1;
1407 goto done;
1408 }
1409 }
1410 goto done;
1411 } else {
1412 struct child_process cp = CHILD_PROCESS_INIT;
1413
1414 cp.git_cmd = 1;
1415 argv_array_pushl(&cp.args, "apply", "-R", NULL);
1416
1417 if (pipe_command(&cp, patch.buf, patch.len, NULL, 0, NULL, 0)) {
1418 if (!quiet)
1419 fprintf_ln(stderr, _("Cannot remove "
1420 "worktree changes"));
1421 ret = -1;
1422 goto done;
1423 }
1424
1425 if (keep_index < 1) {
1426 struct child_process cp = CHILD_PROCESS_INIT;
1427
1428 cp.git_cmd = 1;
1429 argv_array_pushl(&cp.args, "reset", "-q", "--", NULL);
1430 add_pathspecs(&cp.args, ps);
1431 if (run_command(&cp)) {
1432 ret = -1;
1433 goto done;
1434 }
1435 }
1436 goto done;
1437 }
1438
1439 done:
1440 strbuf_release(&stash_msg_buf);
1441 return ret;
1442 }
1443
1444 static int push_stash(int argc, const char **argv, const char *prefix)
1445 {
1446 int keep_index = -1;
1447 int patch_mode = 0;
1448 int include_untracked = 0;
1449 int quiet = 0;
1450 const char *stash_msg = NULL;
1451 struct pathspec ps;
1452 struct option options[] = {
1453 OPT_BOOL('k', "keep-index", &keep_index,
1454 N_("keep index")),
1455 OPT_BOOL('p', "patch", &patch_mode,
1456 N_("stash in patch mode")),
1457 OPT__QUIET(&quiet, N_("quiet mode")),
1458 OPT_BOOL('u', "include-untracked", &include_untracked,
1459 N_("include untracked files in stash")),
1460 OPT_SET_INT('a', "all", &include_untracked,
1461 N_("include ignore files"), 2),
1462 OPT_STRING('m', "message", &stash_msg, N_("message"),
1463 N_("stash message")),
1464 OPT_END()
1465 };
1466
1467 if (argc)
1468 argc = parse_options(argc, argv, prefix, options,
1469 git_stash_push_usage,
1470 0);
1471
1472 parse_pathspec(&ps, 0, PATHSPEC_PREFER_FULL | PATHSPEC_PREFIX_ORIGIN,
1473 prefix, argv);
1474 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode,
1475 include_untracked);
1476 }
1477
1478 static int save_stash(int argc, const char **argv, const char *prefix)
1479 {
1480 int keep_index = -1;
1481 int patch_mode = 0;
1482 int include_untracked = 0;
1483 int quiet = 0;
1484 int ret = 0;
1485 const char *stash_msg = NULL;
1486 struct pathspec ps;
1487 struct strbuf stash_msg_buf = STRBUF_INIT;
1488 struct option options[] = {
1489 OPT_BOOL('k', "keep-index", &keep_index,
1490 N_("keep index")),
1491 OPT_BOOL('p', "patch", &patch_mode,
1492 N_("stash in patch mode")),
1493 OPT__QUIET(&quiet, N_("quiet mode")),
1494 OPT_BOOL('u', "include-untracked", &include_untracked,
1495 N_("include untracked files in stash")),
1496 OPT_SET_INT('a', "all", &include_untracked,
1497 N_("include ignore files"), 2),
1498 OPT_STRING('m', "message", &stash_msg, "message",
1499 N_("stash message")),
1500 OPT_END()
1501 };
1502
1503 argc = parse_options(argc, argv, prefix, options,
1504 git_stash_save_usage,
1505 PARSE_OPT_KEEP_DASHDASH);
1506
1507 if (argc)
1508 stash_msg = strbuf_join_argv(&stash_msg_buf, argc, argv, ' ');
1509
1510 memset(&ps, 0, sizeof(ps));
1511 ret = do_push_stash(&ps, stash_msg, quiet, keep_index,
1512 patch_mode, include_untracked);
1513
1514 strbuf_release(&stash_msg_buf);
1515 return ret;
1516 }
1517
1518 static int use_builtin_stash(void)
1519 {
1520 struct child_process cp = CHILD_PROCESS_INIT;
1521 struct strbuf out = STRBUF_INIT;
1522 int ret, env = git_env_bool("GIT_TEST_STASH_USE_BUILTIN", -1);
1523
1524 if (env != -1)
1525 return env;
1526
1527 argv_array_pushl(&cp.args,
1528 "config", "--bool", "stash.usebuiltin", NULL);
1529 cp.git_cmd = 1;
1530 if (capture_command(&cp, &out, 6)) {
1531 strbuf_release(&out);
1532 return 1;
1533 }
1534
1535 strbuf_trim(&out);
1536 ret = !strcmp("true", out.buf);
1537 strbuf_release(&out);
1538 return ret;
1539 }
1540
1541 int cmd_stash(int argc, const char **argv, const char *prefix)
1542 {
1543 int i = -1;
1544 pid_t pid = getpid();
1545 const char *index_file;
1546 struct argv_array args = ARGV_ARRAY_INIT;
1547
1548 struct option options[] = {
1549 OPT_END()
1550 };
1551
1552 if (!use_builtin_stash()) {
1553 const char *path = mkpath("%s/git-legacy-stash",
1554 git_exec_path());
1555
1556 if (sane_execvp(path, (char **)argv) < 0)
1557 die_errno(_("could not exec %s"), path);
1558 else
1559 BUG("sane_execvp() returned???");
1560 }
1561
1562 prefix = setup_git_directory();
1563 trace_repo_setup(prefix);
1564 setup_work_tree();
1565
1566 git_config(git_diff_basic_config, NULL);
1567
1568 argc = parse_options(argc, argv, prefix, options, git_stash_usage,
1569 PARSE_OPT_KEEP_UNKNOWN | PARSE_OPT_KEEP_DASHDASH);
1570
1571 index_file = get_index_file();
1572 strbuf_addf(&stash_index_path, "%s.stash.%" PRIuMAX, index_file,
1573 (uintmax_t)pid);
1574
1575 if (!argc)
1576 return !!push_stash(0, NULL, prefix);
1577 else if (!strcmp(argv[0], "apply"))
1578 return !!apply_stash(argc, argv, prefix);
1579 else if (!strcmp(argv[0], "clear"))
1580 return !!clear_stash(argc, argv, prefix);
1581 else if (!strcmp(argv[0], "drop"))
1582 return !!drop_stash(argc, argv, prefix);
1583 else if (!strcmp(argv[0], "pop"))
1584 return !!pop_stash(argc, argv, prefix);
1585 else if (!strcmp(argv[0], "branch"))
1586 return !!branch_stash(argc, argv, prefix);
1587 else if (!strcmp(argv[0], "list"))
1588 return !!list_stash(argc, argv, prefix);
1589 else if (!strcmp(argv[0], "show"))
1590 return !!show_stash(argc, argv, prefix);
1591 else if (!strcmp(argv[0], "store"))
1592 return !!store_stash(argc, argv, prefix);
1593 else if (!strcmp(argv[0], "create"))
1594 return !!create_stash(argc, argv, prefix);
1595 else if (!strcmp(argv[0], "push"))
1596 return !!push_stash(argc, argv, prefix);
1597 else if (!strcmp(argv[0], "save"))
1598 return !!save_stash(argc, argv, prefix);
1599 else if (*argv[0] != '-')
1600 usage_msg_opt(xstrfmt(_("unknown subcommand: %s"), argv[0]),
1601 git_stash_usage, options);
1602
1603 if (strcmp(argv[0], "-p")) {
1604 while (++i < argc && strcmp(argv[i], "--")) {
1605 /*
1606 * `akpqu` is a string which contains all short options,
1607 * except `-m` which is verified separately.
1608 */
1609 if ((strlen(argv[i]) == 2) && *argv[i] == '-' &&
1610 strchr("akpqu", argv[i][1]))
1611 continue;
1612
1613 if (!strcmp(argv[i], "--all") ||
1614 !strcmp(argv[i], "--keep-index") ||
1615 !strcmp(argv[i], "--no-keep-index") ||
1616 !strcmp(argv[i], "--patch") ||
1617 !strcmp(argv[i], "--quiet") ||
1618 !strcmp(argv[i], "--include-untracked"))
1619 continue;
1620
1621 /*
1622 * `-m` and `--message=` are verified separately because
1623 * they need to be immediately followed by a string
1624 * (i.e.`-m"foobar"` or `--message="foobar"`).
1625 */
1626 if (starts_with(argv[i], "-m") ||
1627 starts_with(argv[i], "--message="))
1628 continue;
1629
1630 usage_with_options(git_stash_usage, options);
1631 }
1632 }
1633
1634 argv_array_push(&args, "push");
1635 argv_array_pushv(&args, argv);
1636 return !!push_stash(args.argc, args.argv, prefix);
1637 }