Scripts: add git push all

This commit is contained in:
Akemi Izuko 2024-05-08 20:13:25 -06:00
parent 210054fe8b
commit 5c0cba776b
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC

11
bin/gitpushall.sh Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Pushes this branch to all remotes
if ! git branch >/dev/null; then
exit 1
fi
declare -r branch="$(git branch | grep '*' | cut -c 3-)"
git remote -v |
grep '\(push\)' |
awk -F' ' -vbranch="$branch" '{ system("(git push " $1 " " branch ") &") }'