From: Simon Ruderich Date: Sun, 14 Oct 2012 19:48:51 +0000 (+0200) Subject: gitconfig: Update alias rp to run in parallel. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=f26ae162bcc933ecba26dad25242b6217b15d772 gitconfig: Update alias rp to run in parallel. --- diff --git a/gitconfig.m4 b/gitconfig.m4 index bf2a060..fc38d37 100644 --- a/gitconfig.m4 +++ b/gitconfig.m4 @@ -89,8 +89,13 @@ include(../lib.m4) /^Please make sure you have the correct access rights$/d; \ /^and the repository exists\\.$/d;'" # Push to all remotes. Thanks to albel727 in #git on Freenode - # (2011-06-04 16:06 CEST) for the idea. - rp = ! git remote | xargs -L1 -I{} git push {} + # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel + # and to strip unnecessary output. + rp = "! git remote \ + | xargs -d '\\n' -n1 -P0 git push 2>&1 \ + | sed '/^$/d; \ + /^Please make sure you have the correct access rights$/d; \ + /^and the repository exists\\.$/d;'" ## Patches. fp = format-patch ## Maintenance.