X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=gitconfig.m4;h=fc38d37a9c1ac4b1d12ae1ed6f8d066ecd529b8e;hb=f26ae162bcc933ecba26dad25242b6217b15d772;hp=bf2a060796b6afa5a16d002fa6f48b651055aae2;hpb=0e95cf3e5e4eca9e98f7349af11d1e3fbd72aac5;p=config%2Fdotfiles.git 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.