From 6ef7dc303c0df97a8dec96ac29b2ac89b54ac63f Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Tue, 15 Dec 2020 15:11:10 -0800 Subject: [PATCH] bin: git-rebase-all xargs short flags for portability --- bin/git-rebase-all | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-rebase-all b/bin/git-rebase-all index c676d16..02d580c 100755 --- a/bin/git-rebase-all +++ b/bin/git-rebase-all @@ -20,4 +20,4 @@ case "$#" in esac git branch --list --format='%(refname:short)' \ - | xargs --verbose -n 1 git rebase "${base}" + | xargs -t -n 1 git rebase "${base}"