diff options
author | Ben Peart <benpeart@microsoft.com> | 2018-10-23 21:04:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-24 04:57:07 +0200 |
commit | 9ac8125d1ab83f1a0c48f6f30bb8fea92d9770d7 (patch) | |
tree | 63b8f8230ac3585388e1aec9ff686d6636d42976 /builtin/reset.c | |
parent | Fifth batch for 2.20 (diff) | |
download | git-9ac8125d1ab83f1a0c48f6f30bb8fea92d9770d7.tar.xz git-9ac8125d1ab83f1a0c48f6f30bb8fea92d9770d7.zip |
reset: don't compute unstaged changes after reset when --quiet
When git reset is run with the --quiet flag, don't bother finding any
additional unstaged changes as they won't be output anyway. This speeds up
the git reset command by avoiding having to lstat() every file looking for
changes that aren't going to be reported anyway.
The savings can be significant. In a repo on Windows with 200K files
"git reset" drops from 7.16 seconds to 0.32 seconds for a savings of 96%.
Signed-off-by: Ben Peart <benpeart@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/reset.c')
-rw-r--r-- | builtin/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reset.c b/builtin/reset.c index 6d37a35e2e..c2f8e72cb3 100644 --- a/builtin/reset.c +++ b/builtin/reset.c @@ -376,7 +376,7 @@ int cmd_reset(int argc, const char **argv, const char *prefix) int flags = quiet ? REFRESH_QUIET : REFRESH_IN_PORCELAIN; if (read_from_tree(&pathspec, &oid, intent_to_add)) return 1; - if (get_git_work_tree()) + if (!quiet && get_git_work_tree()) refresh_index(&the_index, flags, NULL, NULL, _("Unstaged changes after reset:")); } else { |