darkrc/bin/git-push-pending

15 lines
539 B
Plaintext
Raw Normal View History

2020-07-20 14:09:08 +00:00
#!/bin/sh
repositories=$(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' \
)
if [ -z "$repositories" ]
then exit
fi
echo "$repositories" \
| 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' \
2021-03-05 13:30:22 +00:00
| xargs -P`nproc` -L 1 -I€ sh -c 'cd € && git push'
2021-03-05 13:32:48 +00:00
notify-send Git 'Pushed everything 🎉'