darkrc/bin/git-push-pending

9 lines
409 B
Plaintext
Raw Normal View History

2020-07-20 14:09:08 +00:00
#!/bin/sh
git-pending "$@" \
2020-07-20 14:09:08 +00:00
| grep '^ahead' \
| lua -e 'for line in io.lines() do print(line:match("[^/]+$")); print((line:gsub("^[^ ]* ", ""))) end' \
| zenity --list --column Repository --column Path --text "Repositories that need pushing:" --multiple --title "Git" --separator ';' --width 800 --height 300 --print-column=2 2>/dev/null \
2020-07-20 14:09:08 +00:00
| tr ';' '\n' \
| xargs -L 1 -I€ sh -c 'cd € && git push'