From: ds6 Date: Sat, 22 Dec 2018 07:48:08 +0000 (-0600) Subject: git alias compatibility with busybox xargs X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/commitdiff_plain/7bcc6f7fd9703c522f2c4d0add9a850515c21a44?ds=inline git alias compatibility with busybox xargs xargs -L replaced with tr -s and xargs -0 --- 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