diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-01-16 09:36:46 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-07 16:35:43 -0800 |
commit | e859c69b26528a55bd64f4eee2ed06fad999d862 (patch) | |
tree | d2509c83b038e0e7233e3ee0cc01a17c7e7c7258 /builtin/commit.c | |
parent | 828ea97de486c1693d6e4f2c7347acb50235a85d (diff) | |
download | git-e859c69b26528a55bd64f4eee2ed06fad999d862.tar.gz |
cache-tree: update API to take abitrary flagsnd/cache-tree-api-refactor
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r-- | builtin/commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index eba1377eb3..bf42bb384d 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -400,7 +400,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, fd = hold_locked_index(&index_lock, 1); add_files_to_cache(also ? prefix : NULL, pathspec, 0); refresh_cache_or_die(refresh_flags); - update_main_cache_tree(1); + update_main_cache_tree(WRITE_TREE_SILENT); if (write_cache(fd, active_cache, active_nr) || close_lock_file(&index_lock)) die(_("unable to write new_index file")); @@ -421,7 +421,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, fd = hold_locked_index(&index_lock, 1); refresh_cache_or_die(refresh_flags); if (active_cache_changed) { - update_main_cache_tree(1); + update_main_cache_tree(WRITE_TREE_SILENT); if (write_cache(fd, active_cache, active_nr) || commit_locked_index(&index_lock)) die(_("unable to write new_index file")); |