From 7bcc6f7fd9703c522f2c4d0add9a850515c21a44 Mon Sep 17 00:00:00 2001 From: ds6 Date: Sat, 22 Dec 2018 01:48:08 -0600 Subject: [PATCH] git alias compatibility with busybox xargs xargs -L replaced with tr -s and xargs -0 --- base/.gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/.gitconfig b/base/.gitconfig index 17b6e1c..70f8a2c 100644 --- a/base/.gitconfig +++ b/base/.gitconfig @@ -3,5 +3,5 @@ name = ds6 [alias] - pushall = !git remote | xargs -L1 -P3 git push + pushall = !git remote | tr -s '\\n' '\\0' | xargs -0 -P3 git push pull-submodules = submodule foreach git pull origin master -- 2.47.0