mirror of
https://github.com/lowne/fish-prompt-metro.git
synced 2024-10-27 20:34:12 +00:00
16 lines
307 B
Fish
16 lines
307 B
Fish
function git_untracked_files -d "Get the number of untracked files in a repository"
|
|
git_is_repo; and command git ls-files --others --exclude-standard | command awk '
|
|
|
|
BEGIN {
|
|
n = 0
|
|
}
|
|
|
|
{ n++ }
|
|
|
|
END {
|
|
print n
|
|
exit !n
|
|
}
|
|
'
|
|
end
|