On Sun, Nov 9, 2014 at 10:39 AM, Eric Sunshine [off-list ref] wrote:
quoted
--- a/test-dump-untracked-cache.c
+++ b/test-dump-untracked-cache.c
@@ -44,6 +44,7 @@ int main(int ac, char **av)
{
struct untracked_cache *uc;
struct strbuf base = STRBUF_INIT;
+ setup_git_directory();
What is this change about? Is it related to the rest of this patch?
Yes. This patch makes use of get_git_work_tree() from read_cache()
below. Without setup_git_... worktree is not set up,
read_untracked_extension() thinks the repo is moved and returns no
cache. I'll make a note about this.
quoted
if (read_cache() < 0)
die("unable to read index file");
uc = the_index.untracked;
--
Duy