aboutsummaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorChristian Couder <christian.couder@gmail.com>2016-01-24 16:28:20 +0100
committerJunio C Hamano <gitster@pobox.com>2016-01-25 12:40:11 -0800
commit07b29bfd8d3de9a16c1c93e285b6980ca6b77b45 (patch)
treee63f874f30994dc539b63f0e680cc4c03080b963 /builtin
parent4a4ca4796df6b81d5995f31e87e9e6a64c2b889d (diff)
downloadgit-07b29bfd8d3de9a16c1c93e285b6980ca6b77b45.tar.gz
git-07b29bfd8d3de9a16c1c93e285b6980ca6b77b45.tar.xz
dir: add remove_untracked_cache()
Factor out code into remove_untracked_cache(), which will be used in a later commit. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/update-index.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/builtin/update-index.c b/builtin/update-index.c
index 5f8630c61..d90154c59 100644
--- a/builtin/update-index.c
+++ b/builtin/update-index.c
@@ -1126,11 +1126,7 @@ int cmd_update_index(int argc, const char **argv, const char *prefix)
add_untracked_cache(&the_index);
report(_("Untracked cache enabled for '%s'"), get_git_work_tree());
} else if (untracked_cache == UC_DISABLE) {
- if (the_index.untracked) {
- free_untracked_cache(the_index.untracked);
- the_index.untracked = NULL;
- the_index.cache_changed |= UNTRACKED_CHANGED;
- }
+ remove_untracked_cache(&the_index);
report(_("Untracked cache disabled"));
}