From a4ab5f99718cb5bbeb8a00902b383075a9e6047a Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Tue, 15 Dec 2009 10:40:41 -0500 Subject: [PATCH] Status view: limit untracked file by the prefix/subdirectory This reinstates the original behavior reverted in commit e7d0ebc0ec190e3a07fc28a2f551426e34a1ee6e. --- tig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tig.c b/tig.c index 0a93ad2..602c867 100644 --- a/tig.c +++ b/tig.c @@ -5450,7 +5450,7 @@ static const char *status_diff_files_argv[] = { }; static const char *status_list_other_argv[] = { - "git", "ls-files", "-z", "--others", "--exclude-standard", NULL + "git", "ls-files", "-z", "--others", "--exclude-standard", opt_prefix, NULL }; static const char *status_list_no_head_argv[] = { -- 2.30.2