From 9eafb7bad1a1982f1c01f4c7394fe7bc8e6ea3ae Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 7 Jan 2006 14:32:07 -0800 Subject: [PATCH] git-status: use ls-files --others --directory for untracked list. This shortens "Untracked files" list by using --directory option when running ls-files --others. Signed-off-by: Junio C Hamano --- git-status.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-status.sh b/git-status.sh index 50ccd24e..10d781c9 100755 --- a/git-status.sh +++ b/git-status.sh @@ -83,11 +83,11 @@ report "Changed but not updated" "use git-update-index to mark for commit" if test -f "$GIT_DIR/info/exclude" then - git-ls-files -z --others \ + git-ls-files -z --others --directory \ --exclude-from="$GIT_DIR/info/exclude" \ --exclude-per-directory=.gitignore else - git-ls-files -z --others \ + git-ls-files -z --others --directory \ --exclude-per-directory=.gitignore fi | perl -e '$/ = "\0"; -- 2.11.0