diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-13 22:37:27 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-13 22:37:27 +0900 |
commit | 9235a6ce47f012cd8fcfa80117fed29790bb929b (patch) | |
tree | 29613880808e72561e221db1dcb7b824a53bb9f3 | |
parent | Merge branch 'jk/xdiff-interface' (diff) | |
parent | add: speed up cmd_add() by utilizing read_cache_preload() (diff) | |
download | tgif-9235a6ce47f012cd8fcfa80117fed29790bb929b.tar.xz |
Merge branch 'bp/add-diff-files-optim'
"git add" needs to internally run "diff-files" equivalent, and the
codepath learned the same optimization as "diff-files" has to run
lstat(2) in parallel to find which paths have been updated in the
working tree.
* bp/add-diff-files-optim:
add: speed up cmd_add() by utilizing read_cache_preload()
-rw-r--r-- | builtin/add.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/builtin/add.c b/builtin/add.c index ad49806ebf..f65c172299 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -445,11 +445,6 @@ int cmd_add(int argc, const char **argv, const char *prefix) return 0; } - if (read_cache() < 0) - die(_("index file corrupt")); - - die_in_unpopulated_submodule(&the_index, prefix); - /* * Check the "pathspec '%s' did not match any files" block * below before enabling new magic. @@ -459,6 +454,10 @@ int cmd_add(int argc, const char **argv, const char *prefix) PATHSPEC_SYMLINK_LEADING_PATH, prefix, argv); + if (read_cache_preload(&pathspec) < 0) + die(_("index file corrupt")); + + die_in_unpopulated_submodule(&the_index, prefix); die_path_inside_submodule(&the_index, &pathspec); if (add_new_files) { |