Commit 665c8d8c authored by nimrod's avatar nimrod
Browse files

Fix git-uncomitted.

Now it will list modified and staged files, modified and unstaged files
and entirely new files not yet staged (that aren't in the ignore list).
parent b0475437
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@
set -eu

{
    git diff --name-only
    git ls-files --modified --others --exclude-standard
    git diff --name-only --cached
} | sort -u