commit 0946c4be9b5cb2b763512566d0c5bc19178ea42d parent 398ac8bd8dc740e95afce6ffc4868a7c9e34946c Author: Yuval Langer <yuval.langer@gmail.com> Date: Wed, 1 Nov 2023 15:30:06 +0200 Add git pushall. Diffstat:
A | bin/git-pushall | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/bin/git-pushall b/bin/git-pushall @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ -z "$(command -v xargs)" ]; then + printf "No xargs command!" + exit 1 +fi + +git remote | xargs -P 0 -l git push --all -v