MCPcopy Index your code
hub / github.com/git/git / remove_untracked_cache

Function remove_untracked_cache

dir.c:2963–2970  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2961}
2962
2963void remove_untracked_cache(struct index_state *istate)
2964{
2965 if (istate->untracked) {
2966 free_untracked_cache(istate->untracked);
2967 istate->untracked = NULL;
2968 istate->cache_changed |= UNTRACKED_CHANGED;
2969 }
2970}
2971
2972static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir,
2973 int base_len,

Callers 2

tweak_untracked_cacheFunction · 0.85
cmd_update_indexFunction · 0.85

Calls 1

free_untracked_cacheFunction · 0.85

Tested by

no test coverage detected