2 * "git reset" builtin command
4 * Copyright (c) 2007 Carlos Rica
6 * Based on git-reset.sh, which is
8 * Copyright (c) 2005, 2006 Linus Torvalds and Junio C Hamano
10 #define USE_THE_INDEX_COMPATIBILITY_MACROS
17 #include "run-command.h"
23 #include "parse-options.h"
24 #include "unpack-trees.h"
25 #include "cache-tree.h"
26 #include "submodule.h"
27 #include "submodule-config.h"
29 #define REFRESH_INDEX_DELAY_WARNING_IN_MS (2 * 1000)
31 static const char * const git_reset_usage
[] = {
32 N_("git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]"),
33 N_("git reset [-q] [<tree-ish>] [--] <pathspec>..."),
34 N_("git reset [-q] [--pathspec-from-file [--pathspec-file-nul]] [<tree-ish>]"),
35 N_("git reset --patch [<tree-ish>] [--] [<pathspec>...]"),
39 enum reset_type
{ MIXED
, SOFT
, HARD
, MERGE
, KEEP
, NONE
};
40 static const char *reset_type_names
[] = {
41 N_("mixed"), N_("soft"), N_("hard"), N_("merge"), N_("keep"), NULL
44 static inline int is_merge(void)
46 return !access(git_path_merge_head(the_repository
), F_OK
);
49 static int reset_index(const char *ref
, const struct object_id
*oid
, int reset_type
, int quiet
)
52 struct tree_desc desc
[2];
54 struct unpack_trees_options opts
;
57 memset(&opts
, 0, sizeof(opts
));
59 opts
.src_index
= &the_index
;
60 opts
.dst_index
= &the_index
;
61 opts
.fn
= oneway_merge
;
63 init_checkout_metadata(&opts
.meta
, ref
, oid
, NULL
);
65 opts
.verbose_update
= 1;
70 opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
74 opts
.reset
= UNPACK_RESET_OVERWRITE_UNTRACKED
;
77 opts
.reset
= UNPACK_RESET_PROTECT_UNTRACKED
;
78 /* but opts.update=0, so working tree not updated */
81 BUG("invalid reset_type passed to reset_index");
84 read_cache_unmerged();
86 if (reset_type
== KEEP
) {
87 struct object_id head_oid
;
88 if (get_oid("HEAD", &head_oid
))
89 return error(_("You do not have a valid HEAD."));
90 if (!fill_tree_descriptor(the_repository
, desc
+ nr
, &head_oid
))
91 return error(_("Failed to find tree of HEAD."));
93 opts
.fn
= twoway_merge
;
96 if (!fill_tree_descriptor(the_repository
, desc
+ nr
, oid
)) {
97 error(_("Failed to find tree of %s."), oid_to_hex(oid
));
102 if (unpack_trees(nr
, desc
, &opts
))
105 if (reset_type
== MIXED
|| reset_type
== HARD
) {
106 tree
= parse_tree_indirect(oid
);
107 prime_cache_tree(the_repository
, the_repository
->index
, tree
);
113 for (i
= 0; i
< nr
; i
++)
114 free((void *)desc
[i
].buffer
);
118 static void print_new_head_line(struct commit
*commit
)
120 struct strbuf buf
= STRBUF_INIT
;
122 printf(_("HEAD is now at %s"),
123 find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
));
125 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
127 printf(" %s", buf
.buf
);
129 strbuf_release(&buf
);
132 static void update_index_from_diff(struct diff_queue_struct
*q
,
133 struct diff_options
*opt
, void *data
)
136 int intent_to_add
= *(int *)data
;
138 for (i
= 0; i
< q
->nr
; i
++) {
139 struct diff_filespec
*one
= q
->queue
[i
]->one
;
140 int is_missing
= !(one
->mode
&& !is_null_oid(&one
->oid
));
141 struct cache_entry
*ce
;
143 if (is_missing
&& !intent_to_add
) {
144 remove_file_from_cache(one
->path
);
148 ce
= make_cache_entry(&the_index
, one
->mode
, &one
->oid
, one
->path
,
151 die(_("make_cache_entry failed for path '%s'"),
154 ce
->ce_flags
|= CE_INTENT_TO_ADD
;
155 set_object_name_for_intent_to_add_entry(ce
);
157 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
| ADD_CACHE_OK_TO_REPLACE
);
161 static int read_from_tree(const struct pathspec
*pathspec
,
162 struct object_id
*tree_oid
,
165 struct diff_options opt
;
167 memset(&opt
, 0, sizeof(opt
));
168 copy_pathspec(&opt
.pathspec
, pathspec
);
169 opt
.output_format
= DIFF_FORMAT_CALLBACK
;
170 opt
.format_callback
= update_index_from_diff
;
171 opt
.format_callback_data
= &intent_to_add
;
172 opt
.flags
.override_submodule_config
= 1;
173 opt
.repo
= the_repository
;
175 if (do_diff_cache(tree_oid
, &opt
))
179 clear_pathspec(&opt
.pathspec
);
184 static void set_reflog_message(struct strbuf
*sb
, const char *action
,
187 const char *rla
= getenv("GIT_REFLOG_ACTION");
191 strbuf_addf(sb
, "%s: %s", rla
, action
);
193 strbuf_addf(sb
, "reset: moving to %s", rev
);
195 strbuf_addf(sb
, "reset: %s", action
);
198 static void die_if_unmerged_cache(int reset_type
)
200 if (is_merge() || unmerged_cache())
201 die(_("Cannot do a %s reset in the middle of a merge."),
202 _(reset_type_names
[reset_type
]));
206 static void parse_args(struct pathspec
*pathspec
,
207 const char **argv
, const char *prefix
,
209 const char **rev_ret
)
211 const char *rev
= "HEAD";
212 struct object_id unused
;
214 * Possible arguments are:
216 * git reset [-opts] [<rev>]
217 * git reset [-opts] <tree> [<paths>...]
218 * git reset [-opts] <tree> -- [<paths>...]
219 * git reset [-opts] -- [<paths>...]
220 * git reset [-opts] <paths>...
222 * At this point, argv points immediately after [-opts].
226 if (!strcmp(argv
[0], "--")) {
227 argv
++; /* reset to HEAD, possibly with paths */
228 } else if (argv
[1] && !strcmp(argv
[1], "--")) {
233 * Otherwise, argv[0] could be either <rev> or <paths> and
234 * has to be unambiguous. If there is a single argument, it
237 else if ((!argv
[1] && !get_oid_committish(argv
[0], &unused
)) ||
238 (argv
[1] && !get_oid_treeish(argv
[0], &unused
))) {
240 * Ok, argv[0] looks like a commit/tree; it should not
243 verify_non_filename(prefix
, argv
[0]);
246 /* Otherwise we treat this as a filename */
247 verify_filename(prefix
, argv
[0], 1);
252 if (read_cache() < 0)
253 die(_("index file corrupt"));
255 parse_pathspec(pathspec
, 0,
256 PATHSPEC_PREFER_FULL
|
257 (patch_mode
? PATHSPEC_PREFIX_ORIGIN
: 0),
261 static int reset_refs(const char *rev
, const struct object_id
*oid
)
263 int update_ref_status
;
264 struct strbuf msg
= STRBUF_INIT
;
265 struct object_id
*orig
= NULL
, oid_orig
,
266 *old_orig
= NULL
, oid_old_orig
;
268 if (!get_oid("ORIG_HEAD", &oid_old_orig
))
269 old_orig
= &oid_old_orig
;
270 if (!get_oid("HEAD", &oid_orig
)) {
272 set_reflog_message(&msg
, "updating ORIG_HEAD", NULL
);
273 update_ref(msg
.buf
, "ORIG_HEAD", orig
, old_orig
, 0,
274 UPDATE_REFS_MSG_ON_ERR
);
276 delete_ref(NULL
, "ORIG_HEAD", old_orig
, 0);
277 set_reflog_message(&msg
, "updating HEAD", rev
);
278 update_ref_status
= update_ref(msg
.buf
, "HEAD", oid
, orig
, 0,
279 UPDATE_REFS_MSG_ON_ERR
);
280 strbuf_release(&msg
);
281 return update_ref_status
;
284 static int git_reset_config(const char *var
, const char *value
, void *cb
)
286 if (!strcmp(var
, "submodule.recurse"))
287 return git_default_submodule_config(var
, value
, cb
);
289 return git_default_config(var
, value
, cb
);
292 int cmd_reset(int argc
, const char **argv
, const char *prefix
)
294 int reset_type
= NONE
, update_ref_status
= 0, quiet
= 0;
295 int patch_mode
= 0, pathspec_file_nul
= 0, unborn
;
296 const char *rev
, *pathspec_from_file
= NULL
;
297 struct object_id oid
;
298 struct pathspec pathspec
;
299 int intent_to_add
= 0;
300 const struct option options
[] = {
301 OPT__QUIET(&quiet
, N_("be quiet, only report errors")),
302 OPT_SET_INT(0, "mixed", &reset_type
,
303 N_("reset HEAD and index"), MIXED
),
304 OPT_SET_INT(0, "soft", &reset_type
, N_("reset only HEAD"), SOFT
),
305 OPT_SET_INT(0, "hard", &reset_type
,
306 N_("reset HEAD, index and working tree"), HARD
),
307 OPT_SET_INT(0, "merge", &reset_type
,
308 N_("reset HEAD, index and working tree"), MERGE
),
309 OPT_SET_INT(0, "keep", &reset_type
,
310 N_("reset HEAD but keep local changes"), KEEP
),
311 OPT_CALLBACK_F(0, "recurse-submodules", NULL
,
312 "reset", "control recursive updating of submodules",
313 PARSE_OPT_OPTARG
, option_parse_recurse_submodules_worktree_updater
),
314 OPT_BOOL('p', "patch", &patch_mode
, N_("select hunks interactively")),
315 OPT_BOOL('N', "intent-to-add", &intent_to_add
,
316 N_("record only the fact that removed paths will be added later")),
317 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file
),
318 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul
),
322 git_config(git_reset_config
, NULL
);
323 git_config_get_bool("reset.quiet", &quiet
);
325 argc
= parse_options(argc
, argv
, prefix
, options
, git_reset_usage
,
326 PARSE_OPT_KEEP_DASHDASH
);
327 parse_args(&pathspec
, argv
, prefix
, patch_mode
, &rev
);
329 if (pathspec_from_file
) {
331 die(_("--pathspec-from-file is incompatible with --patch"));
334 die(_("--pathspec-from-file is incompatible with pathspec arguments"));
336 parse_pathspec_file(&pathspec
, 0,
337 PATHSPEC_PREFER_FULL
,
338 prefix
, pathspec_from_file
, pathspec_file_nul
);
339 } else if (pathspec_file_nul
) {
340 die(_("--pathspec-file-nul requires --pathspec-from-file"));
343 unborn
= !strcmp(rev
, "HEAD") && get_oid("HEAD", &oid
);
345 /* reset on unborn branch: treat as reset to empty tree */
346 oidcpy(&oid
, the_hash_algo
->empty_tree
);
347 } else if (!pathspec
.nr
&& !patch_mode
) {
348 struct commit
*commit
;
349 if (get_oid_committish(rev
, &oid
))
350 die(_("Failed to resolve '%s' as a valid revision."), rev
);
351 commit
= lookup_commit_reference(the_repository
, &oid
);
353 die(_("Could not parse object '%s'."), rev
);
354 oidcpy(&oid
, &commit
->object
.oid
);
357 if (get_oid_treeish(rev
, &oid
))
358 die(_("Failed to resolve '%s' as a valid tree."), rev
);
359 tree
= parse_tree_indirect(&oid
);
361 die(_("Could not parse object '%s'."), rev
);
362 oidcpy(&oid
, &tree
->object
.oid
);
366 if (reset_type
!= NONE
)
367 die(_("--patch is incompatible with --{hard,mixed,soft}"));
368 trace2_cmd_mode("patch-interactive");
369 return run_add_interactive(rev
, "--patch=reset", &pathspec
);
372 /* git reset tree [--] paths... can be used to
373 * load chosen paths from the tree into the index without
374 * affecting the working tree nor HEAD. */
376 if (reset_type
== MIXED
)
377 warning(_("--mixed with paths is deprecated; use 'git reset -- <paths>' instead."));
378 else if (reset_type
!= NONE
)
379 die(_("Cannot do %s reset with paths."),
380 _(reset_type_names
[reset_type
]));
382 if (reset_type
== NONE
)
383 reset_type
= MIXED
; /* by default */
386 trace2_cmd_mode("path");
388 trace2_cmd_mode(reset_type_names
[reset_type
]);
390 if (reset_type
!= SOFT
&& (reset_type
!= MIXED
|| get_git_work_tree()))
393 if (reset_type
== MIXED
&& is_bare_repository())
394 die(_("%s reset is not allowed in a bare repository"),
395 _(reset_type_names
[reset_type
]));
397 if (intent_to_add
&& reset_type
!= MIXED
)
398 die(_("-N can only be used with --mixed"));
400 /* Soft reset does not touch the index file nor the working tree
401 * at all, but requires them in a good order. Other resets reset
402 * the index file to the tree object we are switching to. */
403 if (reset_type
== SOFT
|| reset_type
== KEEP
)
404 die_if_unmerged_cache(reset_type
);
406 if (reset_type
!= SOFT
) {
407 struct lock_file lock
= LOCK_INIT
;
408 hold_locked_index(&lock
, LOCK_DIE_ON_ERROR
);
409 if (reset_type
== MIXED
) {
410 int flags
= quiet
? REFRESH_QUIET
: REFRESH_IN_PORCELAIN
;
411 if (read_from_tree(&pathspec
, &oid
, intent_to_add
))
413 the_index
.updated_skipworktree
= 1;
414 if (!quiet
&& get_git_work_tree()) {
415 uint64_t t_begin
, t_delta_in_ms
;
417 t_begin
= getnanotime();
418 refresh_index(&the_index
, flags
, NULL
, NULL
,
419 _("Unstaged changes after reset:"));
420 t_delta_in_ms
= (getnanotime() - t_begin
) / 1000000;
421 if (advice_enabled(ADVICE_RESET_QUIET_WARNING
) && t_delta_in_ms
> REFRESH_INDEX_DELAY_WARNING_IN_MS
) {
422 printf(_("\nIt took %.2f seconds to enumerate unstaged changes after reset. You can\n"
423 "use '--quiet' to avoid this. Set the config setting reset.quiet to true\n"
424 "to make this the default.\n"), t_delta_in_ms
/ 1000.0);
428 struct object_id dummy
;
432 dwim_ref(rev
, strlen(rev
), &dummy
, &ref
, 0);
433 if (ref
&& !starts_with(ref
, "refs/"))
436 err
= reset_index(ref
, &oid
, reset_type
, quiet
);
437 if (reset_type
== KEEP
&& !err
)
438 err
= reset_index(ref
, &oid
, MIXED
, quiet
);
440 die(_("Could not reset index file to revision '%s'."), rev
);
444 if (write_locked_index(&the_index
, &lock
, COMMIT_LOCK
))
445 die(_("Could not write new index file."));
448 if (!pathspec
.nr
&& !unborn
) {
449 /* Any resets without paths update HEAD to the head being
450 * switched to, saving the previous head in ORIG_HEAD before. */
451 update_ref_status
= reset_refs(rev
, &oid
);
453 if (reset_type
== HARD
&& !update_ref_status
&& !quiet
)
454 print_new_head_line(lookup_commit_reference(the_repository
, &oid
));
457 remove_branch_state(the_repository
, 0);
459 return update_ref_status
;