From: Pavel Roskin <proski@xxxxxxx> git-diff-index checks the arguments by lstat(), so an empty string would fail to be recognized as a file. Use "--" to separate files from revisions, and also use "." instead of the empty string. Signed-off-by: Pavel Roskin <proski@xxxxxxx> --- cg-status | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cg-status b/cg-status index d11762e..0529ba2 100755 --- a/cg-status +++ b/cg-status @@ -233,7 +233,7 @@ if [ "$workstatus" ]; then commitignore= [ -s "$_git/commit-ignore" ] && commitignore=1 - git-diff-index HEAD "$basepath" | cut -f5- -d' ' | + git-diff-index HEAD -- "${basepath:-.}" | cut -f5- -d' ' | while IFS=$'\t' read -r mode file; do if [ "$mode" = D ]; then [ "$(git-diff-files "$file")" ] && mode=! - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html