Make total-lines recurse over the whole tree, not work dir

This commit is contained in:
ItsDrike 2023-01-13 01:29:13 +01:00
parent fc4b6f597e
commit b017d2b67e
No known key found for this signature in database
GPG key ID: B014E761034AF742

View file

@ -64,7 +64,7 @@
show-merge = "!sh -c 'merge=$(git find-merge $0 $1) && [ -n \"$merge\" ] && git show $merge'"
comitter-lines = "!git log --author=\"$1\" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf \"added lines: %s, removed lines: %s, total lines: %s\\n\", add, subs, loc }' #"
total-lines = "!git ls-files | xargs cat | wc -l"
total-lines = "!git ls-tree --full-tree --name-only -r HEAD | xargs cat | wc -l"
[credential]
helper = store --file ~/.config/git/git-credentials
[core]