Make git-push-pending follow symlinks

This commit is contained in:
Talia 2020-07-21 19:28:59 +02:00
parent 0ff16bc4c5
commit ec7d369b6e
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
(for name in $@; do find $name -name '*.git' -type d | sed 's/\/.git$//'; done) \
(for name in $@; do find -L $name -name '*.git' -type d | sed 's/\/.git$//'; done) \
| xargs git-pending \
| grep '^ahead' \
| lua -e 'for line in io.lines() do print(line:match("[^/]+$")); print((line:gsub("^[^ ]* ", ""))) end' \