1 #define USE_THE_INDEX_VARIABLE
5 #include "environment.h"
9 #include "object-name.h"
10 #include "parse-options.h"
13 #include "cache-tree.h"
14 #include "unpack-trees.h"
15 #include "merge-recursive.h"
16 #include "merge-ort-wrappers.h"
18 #include "run-command.h"
21 #include "preload-index.h"
22 #include "read-cache.h"
26 #include "sparse-index.h"
30 #include "add-interactive.h"
32 #define INCLUDE_ALL_FILES 2
34 #define BUILTIN_STASH_LIST_USAGE \
35 N_("git stash list [<log-options>]")
36 #define BUILTIN_STASH_SHOW_USAGE \
37 N_("git stash show [-u | --include-untracked | --only-untracked] [<diff-options>] [<stash>]")
38 #define BUILTIN_STASH_DROP_USAGE \
39 N_("git stash drop [-q | --quiet] [<stash>]")
40 #define BUILTIN_STASH_POP_USAGE \
41 N_("git stash pop [--index] [-q | --quiet] [<stash>]")
42 #define BUILTIN_STASH_APPLY_USAGE \
43 N_("git stash apply [--index] [-q | --quiet] [<stash>]")
44 #define BUILTIN_STASH_BRANCH_USAGE \
45 N_("git stash branch <branchname> [<stash>]")
46 #define BUILTIN_STASH_STORE_USAGE \
47 N_("git stash store [(-m | --message) <message>] [-q | --quiet] <commit>")
48 #define BUILTIN_STASH_PUSH_USAGE \
49 N_("git stash [push [-p | --patch] [-S | --staged] [-k | --[no-]keep-index] [-q | --quiet]\n" \
50 " [-u | --include-untracked] [-a | --all] [(-m | --message) <message>]\n" \
51 " [--pathspec-from-file=<file> [--pathspec-file-nul]]\n" \
52 " [--] [<pathspec>...]]")
53 #define BUILTIN_STASH_SAVE_USAGE \
54 N_("git stash save [-p | --patch] [-S | --staged] [-k | --[no-]keep-index] [-q | --quiet]\n" \
55 " [-u | --include-untracked] [-a | --all] [<message>]")
56 #define BUILTIN_STASH_CREATE_USAGE \
57 N_("git stash create [<message>]")
58 #define BUILTIN_STASH_CLEAR_USAGE \
61 static const char * const git_stash_usage
[] = {
62 BUILTIN_STASH_LIST_USAGE
,
63 BUILTIN_STASH_SHOW_USAGE
,
64 BUILTIN_STASH_DROP_USAGE
,
65 BUILTIN_STASH_POP_USAGE
,
66 BUILTIN_STASH_APPLY_USAGE
,
67 BUILTIN_STASH_BRANCH_USAGE
,
68 BUILTIN_STASH_PUSH_USAGE
,
69 BUILTIN_STASH_SAVE_USAGE
,
70 BUILTIN_STASH_CLEAR_USAGE
,
71 BUILTIN_STASH_CREATE_USAGE
,
72 BUILTIN_STASH_STORE_USAGE
,
76 static const char * const git_stash_list_usage
[] = {
77 BUILTIN_STASH_LIST_USAGE
,
81 static const char * const git_stash_show_usage
[] = {
82 BUILTIN_STASH_SHOW_USAGE
,
86 static const char * const git_stash_drop_usage
[] = {
87 BUILTIN_STASH_DROP_USAGE
,
91 static const char * const git_stash_pop_usage
[] = {
92 BUILTIN_STASH_POP_USAGE
,
96 static const char * const git_stash_apply_usage
[] = {
97 BUILTIN_STASH_APPLY_USAGE
,
101 static const char * const git_stash_branch_usage
[] = {
102 BUILTIN_STASH_BRANCH_USAGE
,
106 static const char * const git_stash_clear_usage
[] = {
107 BUILTIN_STASH_CLEAR_USAGE
,
111 static const char * const git_stash_store_usage
[] = {
112 BUILTIN_STASH_STORE_USAGE
,
116 static const char * const git_stash_push_usage
[] = {
117 BUILTIN_STASH_PUSH_USAGE
,
121 static const char * const git_stash_save_usage
[] = {
122 BUILTIN_STASH_SAVE_USAGE
,
126 static const char ref_stash
[] = "refs/stash";
127 static struct strbuf stash_index_path
= STRBUF_INIT
;
130 * w_commit is set to the commit containing the working tree
131 * b_commit is set to the base commit
132 * i_commit is set to the commit containing the index tree
133 * u_commit is set to the commit containing the untracked files tree
134 * w_tree is set to the working tree
135 * b_tree is set to the base tree
136 * i_tree is set to the index tree
137 * u_tree is set to the untracked files tree
140 struct object_id w_commit
;
141 struct object_id b_commit
;
142 struct object_id i_commit
;
143 struct object_id u_commit
;
144 struct object_id w_tree
;
145 struct object_id b_tree
;
146 struct object_id i_tree
;
147 struct object_id u_tree
;
148 struct strbuf revision
;
153 #define STASH_INFO_INIT { \
154 .revision = STRBUF_INIT, \
157 static void free_stash_info(struct stash_info
*info
)
159 strbuf_release(&info
->revision
);
162 static void assert_stash_like(struct stash_info
*info
, const char *revision
)
164 if (get_oidf(&info
->b_commit
, "%s^1", revision
) ||
165 get_oidf(&info
->w_tree
, "%s:", revision
) ||
166 get_oidf(&info
->b_tree
, "%s^1:", revision
) ||
167 get_oidf(&info
->i_tree
, "%s^2:", revision
))
168 die(_("'%s' is not a stash-like commit"), revision
);
171 static int get_stash_info(struct stash_info
*info
, int argc
, const char **argv
)
176 const char *revision
;
177 const char *commit
= NULL
;
178 struct object_id dummy
;
179 struct strbuf symbolic
= STRBUF_INIT
;
183 struct strbuf refs_msg
= STRBUF_INIT
;
185 for (i
= 0; i
< argc
; i
++)
186 strbuf_addf(&refs_msg
, " '%s'", argv
[i
]);
188 fprintf_ln(stderr
, _("Too many revisions specified:%s"),
190 strbuf_release(&refs_msg
);
199 if (!ref_exists(ref_stash
)) {
200 fprintf_ln(stderr
, _("No stash entries found."));
204 strbuf_addf(&info
->revision
, "%s@{0}", ref_stash
);
205 } else if (strspn(commit
, "0123456789") == strlen(commit
)) {
206 strbuf_addf(&info
->revision
, "%s@{%s}", ref_stash
, commit
);
208 strbuf_addstr(&info
->revision
, commit
);
211 revision
= info
->revision
.buf
;
213 if (repo_get_oid(the_repository
, revision
, &info
->w_commit
))
214 return error(_("%s is not a valid reference"), revision
);
216 assert_stash_like(info
, revision
);
218 info
->has_u
= !get_oidf(&info
->u_tree
, "%s^3:", revision
);
220 end_of_rev
= strchrnul(revision
, '@');
221 strbuf_add(&symbolic
, revision
, end_of_rev
- revision
);
223 ret
= repo_dwim_ref(the_repository
, symbolic
.buf
, symbolic
.len
,
224 &dummy
, &expanded_ref
, 0);
225 strbuf_release(&symbolic
);
227 case 0: /* Not found, but valid ref */
228 info
->is_stash_ref
= 0;
231 info
->is_stash_ref
= !strcmp(expanded_ref
, ref_stash
);
233 default: /* Invalid or ambiguous */
238 return !(ret
== 0 || ret
== 1);
241 static int do_clear_stash(void)
243 struct object_id obj
;
244 if (repo_get_oid(the_repository
, ref_stash
, &obj
))
247 return delete_ref(NULL
, ref_stash
, &obj
, 0);
250 static int clear_stash(int argc
, const char **argv
, const char *prefix
)
252 struct option options
[] = {
256 argc
= parse_options(argc
, argv
, prefix
, options
,
257 git_stash_clear_usage
,
258 PARSE_OPT_STOP_AT_NON_OPTION
);
261 return error(_("git stash clear with arguments is "
264 return do_clear_stash();
267 static int reset_tree(struct object_id
*i_tree
, int update
, int reset
)
270 struct unpack_trees_options opts
;
271 struct tree_desc t
[MAX_UNPACK_TREES
];
273 struct lock_file lock_file
= LOCK_INIT
;
275 repo_read_index_preload(the_repository
, NULL
, 0);
276 if (refresh_index(&the_index
, REFRESH_QUIET
, NULL
, NULL
, NULL
))
279 repo_hold_locked_index(the_repository
, &lock_file
, LOCK_DIE_ON_ERROR
);
281 memset(&opts
, 0, sizeof(opts
));
283 tree
= parse_tree_indirect(i_tree
);
284 if (parse_tree(tree
))
287 init_tree_desc(t
, &tree
->object
.oid
, tree
->buffer
, tree
->size
);
290 opts
.src_index
= &the_index
;
291 opts
.dst_index
= &the_index
;
293 opts
.reset
= reset
? UNPACK_RESET_PROTECT_UNTRACKED
: 0;
294 opts
.update
= update
;
296 opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
297 opts
.fn
= oneway_merge
;
299 if (unpack_trees(nr_trees
, t
, &opts
))
302 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
303 return error(_("unable to write new index file"));
308 static int diff_tree_binary(struct strbuf
*out
, struct object_id
*w_commit
)
310 struct child_process cp
= CHILD_PROCESS_INIT
;
311 const char *w_commit_hex
= oid_to_hex(w_commit
);
314 * Diff-tree would not be very hard to replace with a native function,
315 * however it should be done together with apply_cached.
318 strvec_pushl(&cp
.args
, "diff-tree", "--binary", NULL
);
319 strvec_pushf(&cp
.args
, "%s^2^..%s^2", w_commit_hex
, w_commit_hex
);
321 return pipe_command(&cp
, NULL
, 0, out
, 0, NULL
, 0);
324 static int apply_cached(struct strbuf
*out
)
326 struct child_process cp
= CHILD_PROCESS_INIT
;
329 * Apply currently only reads either from stdin or a file, thus
330 * apply_all_patches would have to be updated to optionally take a
334 strvec_pushl(&cp
.args
, "apply", "--cached", NULL
);
335 return pipe_command(&cp
, out
->buf
, out
->len
, NULL
, 0, NULL
, 0);
338 static int reset_head(void)
340 struct child_process cp
= CHILD_PROCESS_INIT
;
343 * Reset is overall quite simple, however there is no current public
347 strvec_pushl(&cp
.args
, "reset", "--quiet", "--refresh", NULL
);
349 return run_command(&cp
);
352 static int is_path_a_directory(const char *path
)
355 * This function differs from abspath.c:is_directory() in that
356 * here we use lstat() instead of stat(); we do not want to
357 * follow symbolic links here.
360 return (!lstat(path
, &st
) && S_ISDIR(st
.st_mode
));
363 static void add_diff_to_buf(struct diff_queue_struct
*q
,
364 struct diff_options
*options UNUSED
,
369 for (i
= 0; i
< q
->nr
; i
++) {
370 if (is_path_a_directory(q
->queue
[i
]->one
->path
))
373 strbuf_addstr(data
, q
->queue
[i
]->one
->path
);
375 /* NUL-terminate: will be fed to update-index -z */
376 strbuf_addch(data
, '\0');
380 static int restore_untracked(struct object_id
*u_tree
)
383 struct child_process cp
= CHILD_PROCESS_INIT
;
386 * We need to run restore files from a given index, but without
387 * affecting the current index, so we use GIT_INDEX_FILE with
388 * run_command to fork processes that will not interfere.
391 strvec_push(&cp
.args
, "read-tree");
392 strvec_push(&cp
.args
, oid_to_hex(u_tree
));
393 strvec_pushf(&cp
.env
, "GIT_INDEX_FILE=%s",
394 stash_index_path
.buf
);
395 if (run_command(&cp
)) {
396 remove_path(stash_index_path
.buf
);
400 child_process_init(&cp
);
402 strvec_pushl(&cp
.args
, "checkout-index", "--all", NULL
);
403 strvec_pushf(&cp
.env
, "GIT_INDEX_FILE=%s",
404 stash_index_path
.buf
);
406 res
= run_command(&cp
);
407 remove_path(stash_index_path
.buf
);
411 static void unstage_changes_unless_new(struct object_id
*orig_tree
)
414 * When we enter this function, there has been a clean merge of
415 * relevant trees, and the merge logic always stages whatever merges
416 * cleanly. We want to unstage those changes, unless it corresponds
417 * to a file that didn't exist as of orig_tree.
419 * However, if any SKIP_WORKTREE path is modified relative to
420 * orig_tree, then we want to clear the SKIP_WORKTREE bit and write
421 * it to the worktree before unstaging.
424 struct checkout state
= CHECKOUT_INIT
;
425 struct diff_options diff_opts
;
426 struct lock_file lock
= LOCK_INIT
;
429 /* If any entries have skip_worktree set, we'll have to check 'em out */
432 state
.refresh_cache
= 1;
433 state
.istate
= &the_index
;
436 * Step 1: get a difference between orig_tree (which corresponding
437 * to the index before a merge was run) and the current index
438 * (reflecting the changes brought in by the merge).
440 repo_diff_setup(the_repository
, &diff_opts
);
441 diff_opts
.flags
.recursive
= 1;
442 diff_opts
.detect_rename
= 0;
443 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
444 diff_setup_done(&diff_opts
);
446 do_diff_cache(orig_tree
, &diff_opts
);
447 diffcore_std(&diff_opts
);
449 /* Iterate over the paths that changed due to the merge... */
450 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
451 struct diff_filepair
*p
;
452 struct cache_entry
*ce
;
455 /* Look up the path's position in the current index. */
456 p
= diff_queued_diff
.queue
[i
];
457 pos
= index_name_pos(&the_index
, p
->two
->path
,
458 strlen(p
->two
->path
));
461 * Step 2: Place changes in the working tree
463 * Stash is about restoring changes *to the working tree*.
464 * So if the merge successfully got a new version of some
465 * path, but left it out of the working tree, then clear the
466 * SKIP_WORKTREE bit and write it to the working tree.
468 if (pos
>= 0 && ce_skip_worktree(the_index
.cache
[pos
])) {
471 ce
= the_index
.cache
[pos
];
472 if (!lstat(ce
->name
, &st
)) {
473 /* Conflicting path present; relocate it */
474 struct strbuf new_path
= STRBUF_INIT
;
477 strbuf_addf(&new_path
,
478 "%s.stash.XXXXXX", ce
->name
);
479 fd
= xmkstemp(new_path
.buf
);
481 printf(_("WARNING: Untracked file in way of "
482 "tracked file! Renaming\n "
485 ce
->name
, new_path
.buf
);
486 if (rename(ce
->name
, new_path
.buf
))
487 die("Failed to move %s to %s\n",
488 ce
->name
, new_path
.buf
);
489 strbuf_release(&new_path
);
491 checkout_entry(ce
, &state
, NULL
, NULL
);
492 ce
->ce_flags
&= ~CE_SKIP_WORKTREE
;
496 * Step 3: "unstage" changes, as long as they are still tracked
498 if (p
->one
->oid_valid
) {
500 * Path existed in orig_tree; restore index entry
501 * from that tree in order to "unstage" the changes.
503 int option
= ADD_CACHE_OK_TO_REPLACE
;
505 option
= ADD_CACHE_OK_TO_ADD
;
507 ce
= make_cache_entry(&the_index
,
512 add_index_entry(&the_index
, ce
, option
);
515 diff_flush(&diff_opts
);
518 * Step 4: write the new index to disk
520 repo_hold_locked_index(the_repository
, &lock
, LOCK_DIE_ON_ERROR
);
521 if (write_locked_index(&the_index
, &lock
,
522 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
523 die(_("could not write index"));
526 static int do_apply_stash(const char *prefix
, struct stash_info
*info
,
527 int index
, int quiet
)
530 int has_index
= index
;
531 struct merge_options o
;
532 struct object_id c_tree
;
533 struct object_id index_tree
;
534 struct tree
*head
, *merge
, *merge_base
;
535 struct lock_file lock
= LOCK_INIT
;
537 repo_read_index_preload(the_repository
, NULL
, 0);
538 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
, 0, 0,
540 return error(_("could not write index"));
542 if (write_index_as_tree(&c_tree
, &the_index
, get_index_file(), 0,
544 return error(_("cannot apply a stash in the middle of a merge"));
547 if (oideq(&info
->b_tree
, &info
->i_tree
) ||
548 oideq(&c_tree
, &info
->i_tree
)) {
551 struct strbuf out
= STRBUF_INIT
;
553 if (diff_tree_binary(&out
, &info
->w_commit
)) {
554 strbuf_release(&out
);
555 return error(_("could not generate diff %s^!."),
556 oid_to_hex(&info
->w_commit
));
559 ret
= apply_cached(&out
);
560 strbuf_release(&out
);
562 return error(_("conflicts in index. "
563 "Try without --index."));
565 discard_index(&the_index
);
566 repo_read_index(the_repository
);
567 if (write_index_as_tree(&index_tree
, &the_index
,
568 get_index_file(), 0, NULL
))
569 return error(_("could not save index tree"));
572 discard_index(&the_index
);
573 repo_read_index(the_repository
);
577 init_merge_options(&o
, the_repository
);
579 o
.branch1
= "Updated upstream";
580 o
.branch2
= "Stashed changes";
581 o
.ancestor
= "Stash base";
583 if (oideq(&info
->b_tree
, &c_tree
))
584 o
.branch1
= "Version stash was based on";
589 if (o
.verbosity
>= 3)
590 printf_ln(_("Merging %s with %s"), o
.branch1
, o
.branch2
);
592 head
= lookup_tree(o
.repo
, &c_tree
);
593 merge
= lookup_tree(o
.repo
, &info
->w_tree
);
594 merge_base
= lookup_tree(o
.repo
, &info
->b_tree
);
596 repo_hold_locked_index(o
.repo
, &lock
, LOCK_DIE_ON_ERROR
);
597 clean
= merge_ort_nonrecursive(&o
, head
, merge
, merge_base
);
600 * If 'clean' >= 0, reverse the value for 'ret' so 'ret' is 0 when the
601 * merge was clean, and nonzero if the merge was unclean or encountered
604 ret
= clean
>= 0 ? !clean
: clean
;
607 rollback_lock_file(&lock
);
608 else if (write_locked_index(o
.repo
->index
, &lock
,
609 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
610 ret
= error(_("could not write index"));
613 repo_rerere(the_repository
, 0);
616 fprintf_ln(stderr
, _("Index was not unstashed."));
618 goto restore_untracked
;
622 if (reset_tree(&index_tree
, 0, 0))
625 unstage_changes_unless_new(&c_tree
);
629 if (info
->has_u
&& restore_untracked(&info
->u_tree
))
630 ret
= error(_("could not restore untracked files from stash"));
633 struct child_process cp
= CHILD_PROCESS_INIT
;
636 * Status is quite simple and could be replaced with calls to
637 * wt_status in the future, but it adds complexities which may
638 * require more tests.
642 strvec_pushf(&cp
.env
, GIT_WORK_TREE_ENVIRONMENT
"=%s",
643 absolute_path(get_git_work_tree()));
644 strvec_pushf(&cp
.env
, GIT_DIR_ENVIRONMENT
"=%s",
645 absolute_path(get_git_dir()));
646 strvec_push(&cp
.args
, "status");
653 static int apply_stash(int argc
, const char **argv
, const char *prefix
)
658 struct stash_info info
= STASH_INFO_INIT
;
659 struct option options
[] = {
660 OPT__QUIET(&quiet
, N_("be quiet, only report errors")),
661 OPT_BOOL(0, "index", &index
,
662 N_("attempt to recreate the index")),
666 argc
= parse_options(argc
, argv
, prefix
, options
,
667 git_stash_apply_usage
, 0);
669 if (get_stash_info(&info
, argc
, argv
))
672 ret
= do_apply_stash(prefix
, &info
, index
, quiet
);
674 free_stash_info(&info
);
678 static int reject_reflog_ent(struct object_id
*ooid UNUSED
,
679 struct object_id
*noid UNUSED
,
680 const char *email UNUSED
,
681 timestamp_t timestamp UNUSED
,
682 int tz UNUSED
, const char *message UNUSED
,
683 void *cb_data UNUSED
)
688 static int reflog_is_empty(const char *refname
)
690 return !for_each_reflog_ent(refname
, reject_reflog_ent
, NULL
);
693 static int do_drop_stash(struct stash_info
*info
, int quiet
)
695 if (!reflog_delete(info
->revision
.buf
,
696 EXPIRE_REFLOGS_REWRITE
| EXPIRE_REFLOGS_UPDATE_REF
,
699 printf_ln(_("Dropped %s (%s)"), info
->revision
.buf
,
700 oid_to_hex(&info
->w_commit
));
702 return error(_("%s: Could not drop stash entry"),
706 if (reflog_is_empty(ref_stash
))
712 static int get_stash_info_assert(struct stash_info
*info
, int argc
,
715 int ret
= get_stash_info(info
, argc
, argv
);
720 if (!info
->is_stash_ref
)
721 return error(_("'%s' is not a stash reference"), info
->revision
.buf
);
726 static int drop_stash(int argc
, const char **argv
, const char *prefix
)
730 struct stash_info info
= STASH_INFO_INIT
;
731 struct option options
[] = {
732 OPT__QUIET(&quiet
, N_("be quiet, only report errors")),
736 argc
= parse_options(argc
, argv
, prefix
, options
,
737 git_stash_drop_usage
, 0);
739 if (get_stash_info_assert(&info
, argc
, argv
))
742 ret
= do_drop_stash(&info
, quiet
);
744 free_stash_info(&info
);
748 static int pop_stash(int argc
, const char **argv
, const char *prefix
)
753 struct stash_info info
= STASH_INFO_INIT
;
754 struct option options
[] = {
755 OPT__QUIET(&quiet
, N_("be quiet, only report errors")),
756 OPT_BOOL(0, "index", &index
,
757 N_("attempt to recreate the index")),
761 argc
= parse_options(argc
, argv
, prefix
, options
,
762 git_stash_pop_usage
, 0);
764 if (get_stash_info_assert(&info
, argc
, argv
))
767 if ((ret
= do_apply_stash(prefix
, &info
, index
, quiet
)))
768 printf_ln(_("The stash entry is kept in case "
769 "you need it again."));
771 ret
= do_drop_stash(&info
, quiet
);
774 free_stash_info(&info
);
778 static int branch_stash(int argc
, const char **argv
, const char *prefix
)
781 const char *branch
= NULL
;
782 struct stash_info info
= STASH_INFO_INIT
;
783 struct child_process cp
= CHILD_PROCESS_INIT
;
784 struct option options
[] = {
788 argc
= parse_options(argc
, argv
, prefix
, options
,
789 git_stash_branch_usage
, 0);
792 fprintf_ln(stderr
, _("No branch name specified"));
798 if (get_stash_info(&info
, argc
- 1, argv
+ 1))
802 strvec_pushl(&cp
.args
, "checkout", "-b", NULL
);
803 strvec_push(&cp
.args
, branch
);
804 strvec_push(&cp
.args
, oid_to_hex(&info
.b_commit
));
805 ret
= run_command(&cp
);
807 ret
= do_apply_stash(prefix
, &info
, 1, 0);
808 if (!ret
&& info
.is_stash_ref
)
809 ret
= do_drop_stash(&info
, 0);
812 free_stash_info(&info
);
816 static int list_stash(int argc
, const char **argv
, const char *prefix
)
818 struct child_process cp
= CHILD_PROCESS_INIT
;
819 struct option options
[] = {
823 argc
= parse_options(argc
, argv
, prefix
, options
,
824 git_stash_list_usage
,
825 PARSE_OPT_KEEP_UNKNOWN_OPT
);
827 if (!ref_exists(ref_stash
))
831 strvec_pushl(&cp
.args
, "log", "--format=%gd: %gs", "-g",
832 "--first-parent", NULL
);
833 strvec_pushv(&cp
.args
, argv
);
834 strvec_push(&cp
.args
, ref_stash
);
835 strvec_push(&cp
.args
, "--");
836 return run_command(&cp
);
839 static int show_stat
= 1;
840 static int show_patch
;
841 static int show_include_untracked
;
843 static int git_stash_config(const char *var
, const char *value
,
844 const struct config_context
*ctx
, void *cb
)
846 if (!strcmp(var
, "stash.showstat")) {
847 show_stat
= git_config_bool(var
, value
);
850 if (!strcmp(var
, "stash.showpatch")) {
851 show_patch
= git_config_bool(var
, value
);
854 if (!strcmp(var
, "stash.showincludeuntracked")) {
855 show_include_untracked
= git_config_bool(var
, value
);
858 return git_diff_basic_config(var
, value
, ctx
, cb
);
861 static void diff_include_untracked(const struct stash_info
*info
, struct diff_options
*diff_opt
)
863 const struct object_id
*oid
[] = { &info
->w_commit
, &info
->u_tree
};
864 struct tree
*tree
[ARRAY_SIZE(oid
)];
865 struct tree_desc tree_desc
[ARRAY_SIZE(oid
)];
866 struct unpack_trees_options unpack_tree_opt
= { 0 };
869 for (i
= 0; i
< ARRAY_SIZE(oid
); i
++) {
870 tree
[i
] = parse_tree_indirect(oid
[i
]);
871 if (parse_tree(tree
[i
]) < 0)
872 die(_("failed to parse tree"));
873 init_tree_desc(&tree_desc
[i
], &tree
[i
]->object
.oid
,
874 tree
[i
]->buffer
, tree
[i
]->size
);
877 unpack_tree_opt
.head_idx
= -1;
878 unpack_tree_opt
.src_index
= &the_index
;
879 unpack_tree_opt
.dst_index
= &the_index
;
880 unpack_tree_opt
.merge
= 1;
881 unpack_tree_opt
.fn
= stash_worktree_untracked_merge
;
883 if (unpack_trees(ARRAY_SIZE(tree_desc
), tree_desc
, &unpack_tree_opt
))
884 die(_("failed to unpack trees"));
886 do_diff_cache(&info
->b_commit
, diff_opt
);
889 static int show_stash(int argc
, const char **argv
, const char *prefix
)
893 struct stash_info info
= STASH_INFO_INIT
;
895 struct strvec stash_args
= STRVEC_INIT
;
896 struct strvec revision_args
= STRVEC_INIT
;
901 } show_untracked
= show_include_untracked
? UNTRACKED_INCLUDE
: UNTRACKED_NONE
;
902 struct option options
[] = {
903 OPT_SET_INT('u', "include-untracked", &show_untracked
,
904 N_("include untracked files in the stash"),
906 OPT_SET_INT_F(0, "only-untracked", &show_untracked
,
907 N_("only show untracked files in the stash"),
908 UNTRACKED_ONLY
, PARSE_OPT_NONEG
),
913 init_diff_ui_defaults();
914 git_config(git_diff_ui_config
, NULL
);
915 repo_init_revisions(the_repository
, &rev
, prefix
);
917 argc
= parse_options(argc
, argv
, prefix
, options
, git_stash_show_usage
,
918 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN_OPT
|
919 PARSE_OPT_KEEP_DASHDASH
);
921 strvec_push(&revision_args
, argv
[0]);
922 for (i
= 1; i
< argc
; i
++) {
923 if (argv
[i
][0] != '-')
924 strvec_push(&stash_args
, argv
[i
]);
926 strvec_push(&revision_args
, argv
[i
]);
929 if (get_stash_info(&info
, stash_args
.nr
, stash_args
.v
))
933 * The config settings are applied only if there are not passed
936 if (revision_args
.nr
== 1) {
938 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
;
941 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
943 if (!show_stat
&& !show_patch
) {
949 argc
= setup_revisions(revision_args
.nr
, revision_args
.v
, &rev
, NULL
);
952 if (!rev
.diffopt
.output_format
) {
953 rev
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
954 diff_setup_done(&rev
.diffopt
);
957 rev
.diffopt
.flags
.recursive
= 1;
958 setup_diff_pager(&rev
.diffopt
);
959 switch (show_untracked
) {
961 diff_tree_oid(&info
.b_commit
, &info
.w_commit
, "", &rev
.diffopt
);
965 diff_root_tree_oid(&info
.u_tree
, "", &rev
.diffopt
);
967 case UNTRACKED_INCLUDE
:
969 diff_include_untracked(&info
, &rev
.diffopt
);
971 diff_tree_oid(&info
.b_commit
, &info
.w_commit
, "", &rev
.diffopt
);
974 log_tree_diff_flush(&rev
);
976 ret
= diff_result_code(&rev
.diffopt
);
978 strvec_clear(&stash_args
);
979 free_stash_info(&info
);
980 release_revisions(&rev
);
982 usage_with_options(git_stash_show_usage
, options
);
989 static int do_store_stash(const struct object_id
*w_commit
, const char *stash_msg
,
992 struct stash_info info
;
993 char revision
[GIT_MAX_HEXSZ
];
995 oid_to_hex_r(revision
, w_commit
);
996 assert_stash_like(&info
, revision
);
999 stash_msg
= "Created via \"git stash store\".";
1001 if (update_ref(stash_msg
, ref_stash
, w_commit
, NULL
,
1002 REF_FORCE_CREATE_REFLOG
,
1003 quiet
? UPDATE_REFS_QUIET_ON_ERR
:
1004 UPDATE_REFS_MSG_ON_ERR
)) {
1006 fprintf_ln(stderr
, _("Cannot update %s with %s"),
1007 ref_stash
, oid_to_hex(w_commit
));
1015 static int store_stash(int argc
, const char **argv
, const char *prefix
)
1018 const char *stash_msg
= NULL
;
1019 struct object_id obj
;
1020 struct object_context dummy
;
1021 struct option options
[] = {
1022 OPT__QUIET(&quiet
, N_("be quiet")),
1023 OPT_STRING('m', "message", &stash_msg
, "message",
1024 N_("stash message")),
1028 argc
= parse_options(argc
, argv
, prefix
, options
,
1029 git_stash_store_usage
,
1030 PARSE_OPT_KEEP_UNKNOWN_OPT
);
1034 fprintf_ln(stderr
, _("\"git stash store\" requires one "
1035 "<commit> argument"));
1039 if (get_oid_with_context(the_repository
,
1040 argv
[0], quiet
? GET_OID_QUIETLY
: 0, &obj
,
1043 fprintf_ln(stderr
, _("Cannot update %s with %s"),
1044 ref_stash
, argv
[0]);
1048 return do_store_stash(&obj
, stash_msg
, quiet
);
1051 static void add_pathspecs(struct strvec
*args
,
1052 const struct pathspec
*ps
) {
1055 for (i
= 0; i
< ps
->nr
; i
++)
1056 strvec_push(args
, ps
->items
[i
].original
);
1060 * `untracked_files` will be filled with the names of untracked files.
1061 * The return value is:
1063 * = 0 if there are not any untracked files
1064 * > 0 if there are untracked files
1066 static int get_untracked_files(const struct pathspec
*ps
, int include_untracked
,
1067 struct strbuf
*untracked_files
)
1071 struct dir_struct dir
= DIR_INIT
;
1073 if (include_untracked
!= INCLUDE_ALL_FILES
)
1074 setup_standard_excludes(&dir
);
1076 fill_directory(&dir
, the_repository
->index
, ps
);
1077 for (i
= 0; i
< dir
.nr
; i
++) {
1078 struct dir_entry
*ent
= dir
.entries
[i
];
1080 strbuf_addstr(untracked_files
, ent
->name
);
1081 /* NUL-terminate: will be fed to update-index -z */
1082 strbuf_addch(untracked_files
, '\0');
1090 * The return value of `check_changes_tracked_files()` can be:
1092 * < 0 if there was an error
1093 * = 0 if there are no changes.
1094 * > 0 if there are changes.
1096 static int check_changes_tracked_files(const struct pathspec
*ps
)
1098 struct rev_info rev
;
1099 struct object_id dummy
;
1102 /* No initial commit. */
1103 if (repo_get_oid(the_repository
, "HEAD", &dummy
))
1106 if (repo_read_index(the_repository
) < 0)
1109 repo_init_revisions(the_repository
, &rev
, NULL
);
1110 copy_pathspec(&rev
.prune_data
, ps
);
1112 rev
.diffopt
.flags
.quick
= 1;
1113 rev
.diffopt
.flags
.ignore_submodules
= 1;
1116 add_head_to_pending(&rev
);
1117 diff_setup_done(&rev
.diffopt
);
1119 run_diff_index(&rev
, DIFF_INDEX_CACHED
);
1120 if (diff_result_code(&rev
.diffopt
)) {
1125 run_diff_files(&rev
, 0);
1126 if (diff_result_code(&rev
.diffopt
)) {
1132 release_revisions(&rev
);
1137 * The function will fill `untracked_files` with the names of untracked files
1138 * It will return 1 if there were any changes and 0 if there were not.
1140 static int check_changes(const struct pathspec
*ps
, int include_untracked
,
1141 struct strbuf
*untracked_files
)
1144 if (check_changes_tracked_files(ps
))
1147 if (include_untracked
&& get_untracked_files(ps
, include_untracked
,
1154 static int save_untracked_files(struct stash_info
*info
, struct strbuf
*msg
,
1155 struct strbuf files
)
1158 struct strbuf untracked_msg
= STRBUF_INIT
;
1159 struct child_process cp_upd_index
= CHILD_PROCESS_INIT
;
1160 struct index_state istate
= INDEX_STATE_INIT(the_repository
);
1162 cp_upd_index
.git_cmd
= 1;
1163 strvec_pushl(&cp_upd_index
.args
, "update-index", "-z", "--add",
1164 "--remove", "--stdin", NULL
);
1165 strvec_pushf(&cp_upd_index
.env
, "GIT_INDEX_FILE=%s",
1166 stash_index_path
.buf
);
1168 strbuf_addf(&untracked_msg
, "untracked files on %s\n", msg
->buf
);
1169 if (pipe_command(&cp_upd_index
, files
.buf
, files
.len
, NULL
, 0,
1175 if (write_index_as_tree(&info
->u_tree
, &istate
, stash_index_path
.buf
, 0,
1181 if (commit_tree(untracked_msg
.buf
, untracked_msg
.len
,
1182 &info
->u_tree
, NULL
, &info
->u_commit
, NULL
, NULL
)) {
1188 release_index(&istate
);
1189 strbuf_release(&untracked_msg
);
1190 remove_path(stash_index_path
.buf
);
1194 static int stash_staged(struct stash_info
*info
, struct strbuf
*out_patch
,
1198 struct child_process cp_diff_tree
= CHILD_PROCESS_INIT
;
1199 struct index_state istate
= INDEX_STATE_INIT(the_repository
);
1201 if (write_index_as_tree(&info
->w_tree
, &istate
, the_repository
->index_file
,
1207 cp_diff_tree
.git_cmd
= 1;
1208 strvec_pushl(&cp_diff_tree
.args
, "diff-tree", "-p", "-U1", "HEAD",
1209 oid_to_hex(&info
->w_tree
), "--", NULL
);
1210 if (pipe_command(&cp_diff_tree
, NULL
, 0, out_patch
, 0, NULL
, 0)) {
1215 if (!out_patch
->len
) {
1217 fprintf_ln(stderr
, _("No staged changes"));
1222 release_index(&istate
);
1226 static int stash_patch(struct stash_info
*info
, const struct pathspec
*ps
,
1227 struct strbuf
*out_patch
, int quiet
)
1230 struct child_process cp_read_tree
= CHILD_PROCESS_INIT
;
1231 struct child_process cp_diff_tree
= CHILD_PROCESS_INIT
;
1232 struct index_state istate
= INDEX_STATE_INIT(the_repository
);
1233 char *old_index_env
= NULL
, *old_repo_index_file
;
1235 remove_path(stash_index_path
.buf
);
1237 cp_read_tree
.git_cmd
= 1;
1238 strvec_pushl(&cp_read_tree
.args
, "read-tree", "HEAD", NULL
);
1239 strvec_pushf(&cp_read_tree
.env
, "GIT_INDEX_FILE=%s",
1240 stash_index_path
.buf
);
1241 if (run_command(&cp_read_tree
)) {
1246 /* Find out what the user wants. */
1247 old_repo_index_file
= the_repository
->index_file
;
1248 the_repository
->index_file
= stash_index_path
.buf
;
1249 old_index_env
= xstrdup_or_null(getenv(INDEX_ENVIRONMENT
));
1250 setenv(INDEX_ENVIRONMENT
, the_repository
->index_file
, 1);
1252 ret
= !!run_add_p(the_repository
, ADD_P_STASH
, NULL
, ps
);
1254 the_repository
->index_file
= old_repo_index_file
;
1255 if (old_index_env
&& *old_index_env
)
1256 setenv(INDEX_ENVIRONMENT
, old_index_env
, 1);
1258 unsetenv(INDEX_ENVIRONMENT
);
1259 FREE_AND_NULL(old_index_env
);
1261 /* State of the working tree. */
1262 if (write_index_as_tree(&info
->w_tree
, &istate
, stash_index_path
.buf
, 0,
1268 cp_diff_tree
.git_cmd
= 1;
1269 strvec_pushl(&cp_diff_tree
.args
, "diff-tree", "-p", "-U1", "HEAD",
1270 oid_to_hex(&info
->w_tree
), "--", NULL
);
1271 if (pipe_command(&cp_diff_tree
, NULL
, 0, out_patch
, 0, NULL
, 0)) {
1276 if (!out_patch
->len
) {
1278 fprintf_ln(stderr
, _("No changes selected"));
1283 release_index(&istate
);
1284 remove_path(stash_index_path
.buf
);
1288 static int stash_working_tree(struct stash_info
*info
, const struct pathspec
*ps
)
1291 struct rev_info rev
;
1292 struct child_process cp_upd_index
= CHILD_PROCESS_INIT
;
1293 struct strbuf diff_output
= STRBUF_INIT
;
1294 struct index_state istate
= INDEX_STATE_INIT(the_repository
);
1296 repo_init_revisions(the_repository
, &rev
, NULL
);
1297 copy_pathspec(&rev
.prune_data
, ps
);
1299 set_alternate_index_output(stash_index_path
.buf
);
1300 if (reset_tree(&info
->i_tree
, 0, 0)) {
1304 set_alternate_index_output(NULL
);
1306 rev
.diffopt
.output_format
= DIFF_FORMAT_CALLBACK
;
1307 rev
.diffopt
.format_callback
= add_diff_to_buf
;
1308 rev
.diffopt
.format_callback_data
= &diff_output
;
1310 if (repo_read_index_preload(the_repository
, &rev
.diffopt
.pathspec
, 0) < 0) {
1315 add_pending_object(&rev
, parse_object(the_repository
, &info
->b_commit
),
1317 run_diff_index(&rev
, 0);
1319 cp_upd_index
.git_cmd
= 1;
1320 strvec_pushl(&cp_upd_index
.args
, "update-index",
1321 "--ignore-skip-worktree-entries",
1322 "-z", "--add", "--remove", "--stdin", NULL
);
1323 strvec_pushf(&cp_upd_index
.env
, "GIT_INDEX_FILE=%s",
1324 stash_index_path
.buf
);
1326 if (pipe_command(&cp_upd_index
, diff_output
.buf
, diff_output
.len
,
1327 NULL
, 0, NULL
, 0)) {
1332 if (write_index_as_tree(&info
->w_tree
, &istate
, stash_index_path
.buf
, 0,
1339 release_index(&istate
);
1340 release_revisions(&rev
);
1341 strbuf_release(&diff_output
);
1342 remove_path(stash_index_path
.buf
);
1346 static int do_create_stash(const struct pathspec
*ps
, struct strbuf
*stash_msg_buf
,
1347 int include_untracked
, int patch_mode
, int only_staged
,
1348 struct stash_info
*info
, struct strbuf
*patch
,
1353 int untracked_commit_option
= 0;
1354 const char *head_short_sha1
= NULL
;
1355 const char *branch_ref
= NULL
;
1356 const char *branch_name
= "(no branch)";
1357 struct commit
*head_commit
= NULL
;
1358 struct commit_list
*parents
= NULL
;
1359 struct strbuf msg
= STRBUF_INIT
;
1360 struct strbuf commit_tree_label
= STRBUF_INIT
;
1361 struct strbuf untracked_files
= STRBUF_INIT
;
1363 prepare_fallback_ident("git stash", "git@stash");
1365 repo_read_index_preload(the_repository
, NULL
, 0);
1366 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
, 0, 0,
1367 NULL
, NULL
, NULL
) < 0) {
1368 ret
= error(_("could not write index"));
1372 if (repo_get_oid(the_repository
, "HEAD", &info
->b_commit
)) {
1374 fprintf_ln(stderr
, _("You do not have "
1375 "the initial commit yet"));
1379 head_commit
= lookup_commit(the_repository
, &info
->b_commit
);
1382 if (!check_changes(ps
, include_untracked
, &untracked_files
)) {
1387 branch_ref
= resolve_ref_unsafe("HEAD", 0, NULL
, &flags
);
1388 if (flags
& REF_ISSYMREF
)
1389 skip_prefix(branch_ref
, "refs/heads/", &branch_name
);
1390 head_short_sha1
= repo_find_unique_abbrev(the_repository
,
1391 &head_commit
->object
.oid
,
1393 strbuf_addf(&msg
, "%s: %s ", branch_name
, head_short_sha1
);
1394 pp_commit_easy(CMIT_FMT_ONELINE
, head_commit
, &msg
);
1396 strbuf_addf(&commit_tree_label
, "index on %s\n", msg
.buf
);
1397 commit_list_insert(head_commit
, &parents
);
1398 if (write_index_as_tree(&info
->i_tree
, &the_index
, get_index_file(), 0,
1400 commit_tree(commit_tree_label
.buf
, commit_tree_label
.len
,
1401 &info
->i_tree
, parents
, &info
->i_commit
, NULL
, NULL
)) {
1403 fprintf_ln(stderr
, _("Cannot save the current "
1409 if (include_untracked
) {
1410 if (save_untracked_files(info
, &msg
, untracked_files
)) {
1412 fprintf_ln(stderr
, _("Cannot save "
1413 "the untracked files"));
1417 untracked_commit_option
= 1;
1420 ret
= stash_patch(info
, ps
, patch
, quiet
);
1423 fprintf_ln(stderr
, _("Cannot save the current "
1426 } else if (ret
> 0) {
1429 } else if (only_staged
) {
1430 ret
= stash_staged(info
, patch
, quiet
);
1433 fprintf_ln(stderr
, _("Cannot save the current "
1436 } else if (ret
> 0) {
1440 if (stash_working_tree(info
, ps
)) {
1442 fprintf_ln(stderr
, _("Cannot save the current "
1449 if (!stash_msg_buf
->len
)
1450 strbuf_addf(stash_msg_buf
, "WIP on %s", msg
.buf
);
1452 strbuf_insertf(stash_msg_buf
, 0, "On %s: ", branch_name
);
1455 * `parents` will be empty after calling `commit_tree()`, so there is
1456 * no need to call `free_commit_list()`
1459 if (untracked_commit_option
)
1460 commit_list_insert(lookup_commit(the_repository
,
1463 commit_list_insert(lookup_commit(the_repository
, &info
->i_commit
),
1465 commit_list_insert(head_commit
, &parents
);
1467 if (commit_tree(stash_msg_buf
->buf
, stash_msg_buf
->len
, &info
->w_tree
,
1468 parents
, &info
->w_commit
, NULL
, NULL
)) {
1470 fprintf_ln(stderr
, _("Cannot record "
1471 "working tree state"));
1477 strbuf_release(&commit_tree_label
);
1478 strbuf_release(&msg
);
1479 strbuf_release(&untracked_files
);
1483 static int create_stash(int argc
, const char **argv
, const char *prefix UNUSED
)
1486 struct strbuf stash_msg_buf
= STRBUF_INIT
;
1487 struct stash_info info
= STASH_INFO_INIT
;
1490 /* Starting with argv[1], since argv[0] is "create" */
1491 strbuf_join_argv(&stash_msg_buf
, argc
- 1, ++argv
, ' ');
1493 memset(&ps
, 0, sizeof(ps
));
1494 if (!check_changes_tracked_files(&ps
))
1497 ret
= do_create_stash(&ps
, &stash_msg_buf
, 0, 0, 0, &info
,
1500 printf_ln("%s", oid_to_hex(&info
.w_commit
));
1502 free_stash_info(&info
);
1503 strbuf_release(&stash_msg_buf
);
1507 static int do_push_stash(const struct pathspec
*ps
, const char *stash_msg
, int quiet
,
1508 int keep_index
, int patch_mode
, int include_untracked
, int only_staged
)
1511 struct stash_info info
= STASH_INFO_INIT
;
1512 struct strbuf patch
= STRBUF_INIT
;
1513 struct strbuf stash_msg_buf
= STRBUF_INIT
;
1514 struct strbuf untracked_files
= STRBUF_INIT
;
1516 if (patch_mode
&& keep_index
== -1)
1519 if (patch_mode
&& include_untracked
) {
1520 fprintf_ln(stderr
, _("Can't use --patch and --include-untracked"
1521 " or --all at the same time"));
1526 /* --patch overrides --staged */
1530 if (only_staged
&& include_untracked
) {
1531 fprintf_ln(stderr
, _("Can't use --staged and --include-untracked"
1532 " or --all at the same time"));
1537 repo_read_index_preload(the_repository
, NULL
, 0);
1538 if (!include_untracked
&& ps
->nr
) {
1540 char *ps_matched
= xcalloc(ps
->nr
, 1);
1542 /* TODO: audit for interaction with sparse-index. */
1543 ensure_full_index(&the_index
);
1544 for (i
= 0; i
< the_index
.cache_nr
; i
++)
1545 ce_path_match(&the_index
, the_index
.cache
[i
], ps
,
1548 if (report_path_error(ps_matched
, ps
)) {
1549 fprintf_ln(stderr
, _("Did you forget to 'git add'?"));
1557 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
, 0, 0,
1558 NULL
, NULL
, NULL
)) {
1559 ret
= error(_("could not write index"));
1563 if (!check_changes(ps
, include_untracked
, &untracked_files
)) {
1565 printf_ln(_("No local changes to save"));
1569 if (!reflog_exists(ref_stash
) && do_clear_stash()) {
1572 fprintf_ln(stderr
, _("Cannot initialize stash"));
1577 strbuf_addstr(&stash_msg_buf
, stash_msg
);
1578 if (do_create_stash(ps
, &stash_msg_buf
, include_untracked
, patch_mode
, only_staged
,
1579 &info
, &patch
, quiet
)) {
1584 if (do_store_stash(&info
.w_commit
, stash_msg_buf
.buf
, 1)) {
1587 fprintf_ln(stderr
, _("Cannot save the current status"));
1592 printf_ln(_("Saved working directory and index state %s"),
1595 if (!(patch_mode
|| only_staged
)) {
1596 if (include_untracked
&& !ps
->nr
) {
1597 struct child_process cp
= CHILD_PROCESS_INIT
;
1600 if (startup_info
->original_cwd
) {
1601 cp
.dir
= startup_info
->original_cwd
;
1602 strvec_pushf(&cp
.env
, "%s=%s",
1603 GIT_WORK_TREE_ENVIRONMENT
,
1604 the_repository
->worktree
);
1606 strvec_pushl(&cp
.args
, "clean", "--force",
1607 "--quiet", "-d", ":/", NULL
);
1608 if (include_untracked
== INCLUDE_ALL_FILES
)
1609 strvec_push(&cp
.args
, "-x");
1610 if (run_command(&cp
)) {
1615 discard_index(&the_index
);
1617 struct child_process cp_add
= CHILD_PROCESS_INIT
;
1618 struct child_process cp_diff
= CHILD_PROCESS_INIT
;
1619 struct child_process cp_apply
= CHILD_PROCESS_INIT
;
1620 struct strbuf out
= STRBUF_INIT
;
1623 strvec_push(&cp_add
.args
, "add");
1624 if (!include_untracked
)
1625 strvec_push(&cp_add
.args
, "-u");
1626 if (include_untracked
== INCLUDE_ALL_FILES
)
1627 strvec_push(&cp_add
.args
, "--force");
1628 strvec_push(&cp_add
.args
, "--");
1629 add_pathspecs(&cp_add
.args
, ps
);
1630 if (run_command(&cp_add
)) {
1635 cp_diff
.git_cmd
= 1;
1636 strvec_pushl(&cp_diff
.args
, "diff-index", "-p",
1637 "--cached", "--binary", "HEAD", "--",
1639 add_pathspecs(&cp_diff
.args
, ps
);
1640 if (pipe_command(&cp_diff
, NULL
, 0, &out
, 0, NULL
, 0)) {
1645 cp_apply
.git_cmd
= 1;
1646 strvec_pushl(&cp_apply
.args
, "apply", "--index",
1648 if (pipe_command(&cp_apply
, out
.buf
, out
.len
, NULL
, 0,
1654 struct child_process cp
= CHILD_PROCESS_INIT
;
1656 /* BUG: this nukes untracked files in the way */
1657 strvec_pushl(&cp
.args
, "reset", "--hard", "-q",
1658 "--no-recurse-submodules", NULL
);
1659 if (run_command(&cp
)) {
1665 if (keep_index
== 1 && !is_null_oid(&info
.i_tree
)) {
1666 struct child_process cp
= CHILD_PROCESS_INIT
;
1669 strvec_pushl(&cp
.args
, "checkout", "--no-overlay",
1670 oid_to_hex(&info
.i_tree
), "--", NULL
);
1672 strvec_push(&cp
.args
, ":/");
1674 add_pathspecs(&cp
.args
, ps
);
1675 if (run_command(&cp
)) {
1682 struct child_process cp
= CHILD_PROCESS_INIT
;
1685 strvec_pushl(&cp
.args
, "apply", "-R", NULL
);
1687 if (pipe_command(&cp
, patch
.buf
, patch
.len
, NULL
, 0, NULL
, 0)) {
1689 fprintf_ln(stderr
, _("Cannot remove "
1690 "worktree changes"));
1695 if (keep_index
< 1) {
1696 struct child_process cp
= CHILD_PROCESS_INIT
;
1699 strvec_pushl(&cp
.args
, "reset", "-q", "--refresh", "--",
1701 add_pathspecs(&cp
.args
, ps
);
1702 if (run_command(&cp
)) {
1711 strbuf_release(&patch
);
1712 free_stash_info(&info
);
1713 strbuf_release(&stash_msg_buf
);
1714 strbuf_release(&untracked_files
);
1718 static int push_stash(int argc
, const char **argv
, const char *prefix
,
1721 int force_assume
= 0;
1722 int keep_index
= -1;
1723 int only_staged
= 0;
1725 int include_untracked
= 0;
1727 int pathspec_file_nul
= 0;
1728 const char *stash_msg
= NULL
;
1729 const char *pathspec_from_file
= NULL
;
1731 struct option options
[] = {
1732 OPT_BOOL('k', "keep-index", &keep_index
,
1734 OPT_BOOL('S', "staged", &only_staged
,
1735 N_("stash staged changes only")),
1736 OPT_BOOL('p', "patch", &patch_mode
,
1737 N_("stash in patch mode")),
1738 OPT__QUIET(&quiet
, N_("quiet mode")),
1739 OPT_BOOL('u', "include-untracked", &include_untracked
,
1740 N_("include untracked files in stash")),
1741 OPT_SET_INT('a', "all", &include_untracked
,
1742 N_("include ignore files"), 2),
1743 OPT_STRING('m', "message", &stash_msg
, N_("message"),
1744 N_("stash message")),
1745 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file
),
1746 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul
),
1752 force_assume
= !strcmp(argv
[0], "-p");
1753 argc
= parse_options(argc
, argv
, prefix
, options
,
1754 push_assumed
? git_stash_usage
:
1755 git_stash_push_usage
,
1756 PARSE_OPT_KEEP_DASHDASH
);
1760 if (!strcmp(argv
[0], "--")) {
1763 } else if (push_assumed
&& !force_assume
) {
1764 die("subcommand wasn't specified; 'push' can't be assumed due to unexpected token '%s'",
1769 parse_pathspec(&ps
, 0, PATHSPEC_PREFER_FULL
| PATHSPEC_PREFIX_ORIGIN
,
1772 if (pathspec_from_file
) {
1774 die(_("options '%s' and '%s' cannot be used together"), "--pathspec-from-file", "--patch");
1777 die(_("options '%s' and '%s' cannot be used together"), "--pathspec-from-file", "--staged");
1780 die(_("'%s' and pathspec arguments cannot be used together"), "--pathspec-from-file");
1782 parse_pathspec_file(&ps
, 0,
1783 PATHSPEC_PREFER_FULL
| PATHSPEC_PREFIX_ORIGIN
,
1784 prefix
, pathspec_from_file
, pathspec_file_nul
);
1785 } else if (pathspec_file_nul
) {
1786 die(_("the option '%s' requires '%s'"), "--pathspec-file-nul", "--pathspec-from-file");
1789 ret
= do_push_stash(&ps
, stash_msg
, quiet
, keep_index
, patch_mode
,
1790 include_untracked
, only_staged
);
1791 clear_pathspec(&ps
);
1795 static int push_stash_unassumed(int argc
, const char **argv
, const char *prefix
)
1797 return push_stash(argc
, argv
, prefix
, 0);
1800 static int save_stash(int argc
, const char **argv
, const char *prefix
)
1802 int keep_index
= -1;
1803 int only_staged
= 0;
1805 int include_untracked
= 0;
1808 const char *stash_msg
= NULL
;
1810 struct strbuf stash_msg_buf
= STRBUF_INIT
;
1811 struct option options
[] = {
1812 OPT_BOOL('k', "keep-index", &keep_index
,
1814 OPT_BOOL('S', "staged", &only_staged
,
1815 N_("stash staged changes only")),
1816 OPT_BOOL('p', "patch", &patch_mode
,
1817 N_("stash in patch mode")),
1818 OPT__QUIET(&quiet
, N_("quiet mode")),
1819 OPT_BOOL('u', "include-untracked", &include_untracked
,
1820 N_("include untracked files in stash")),
1821 OPT_SET_INT('a', "all", &include_untracked
,
1822 N_("include ignore files"), 2),
1823 OPT_STRING('m', "message", &stash_msg
, "message",
1824 N_("stash message")),
1828 argc
= parse_options(argc
, argv
, prefix
, options
,
1829 git_stash_save_usage
,
1830 PARSE_OPT_KEEP_DASHDASH
);
1833 stash_msg
= strbuf_join_argv(&stash_msg_buf
, argc
, argv
, ' ');
1835 memset(&ps
, 0, sizeof(ps
));
1836 ret
= do_push_stash(&ps
, stash_msg
, quiet
, keep_index
,
1837 patch_mode
, include_untracked
, only_staged
);
1839 strbuf_release(&stash_msg_buf
);
1843 int cmd_stash(int argc
, const char **argv
, const char *prefix
)
1845 pid_t pid
= getpid();
1846 const char *index_file
;
1847 struct strvec args
= STRVEC_INIT
;
1848 parse_opt_subcommand_fn
*fn
= NULL
;
1849 struct option options
[] = {
1850 OPT_SUBCOMMAND("apply", &fn
, apply_stash
),
1851 OPT_SUBCOMMAND("clear", &fn
, clear_stash
),
1852 OPT_SUBCOMMAND("drop", &fn
, drop_stash
),
1853 OPT_SUBCOMMAND("pop", &fn
, pop_stash
),
1854 OPT_SUBCOMMAND("branch", &fn
, branch_stash
),
1855 OPT_SUBCOMMAND("list", &fn
, list_stash
),
1856 OPT_SUBCOMMAND("show", &fn
, show_stash
),
1857 OPT_SUBCOMMAND("store", &fn
, store_stash
),
1858 OPT_SUBCOMMAND("create", &fn
, create_stash
),
1859 OPT_SUBCOMMAND("push", &fn
, push_stash_unassumed
),
1860 OPT_SUBCOMMAND_F("save", &fn
, save_stash
, PARSE_OPT_NOCOMPLETE
),
1864 git_config(git_stash_config
, NULL
);
1866 argc
= parse_options(argc
, argv
, prefix
, options
, git_stash_usage
,
1867 PARSE_OPT_SUBCOMMAND_OPTIONAL
|
1868 PARSE_OPT_KEEP_UNKNOWN_OPT
|
1869 PARSE_OPT_KEEP_DASHDASH
);
1871 prepare_repo_settings(the_repository
);
1872 the_repository
->settings
.command_requires_full_index
= 0;
1874 index_file
= get_index_file();
1875 strbuf_addf(&stash_index_path
, "%s.stash.%" PRIuMAX
, index_file
,
1879 return !!fn(argc
, argv
, prefix
);
1881 return !!push_stash_unassumed(0, NULL
, prefix
);
1883 /* Assume 'stash push' */
1884 strvec_push(&args
, "push");
1885 strvec_pushv(&args
, argv
);
1886 return !!push_stash(args
.nr
, args
.v
, prefix
, 1);