From: Junio C Hamano Date: Sat, 7 Jan 2006 22:32:07 +0000 (-0800) Subject: git-status: use ls-files --others --directory for untracked list. X-Git-Tag: v1.1.0~7 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=9eafb7bad1a1982f1c01f4c7394fe7bc8e6ea3ae;p=git.git 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 --- 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";