diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-12-10 19:40:33 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-12-10 19:40:33 -0300 |
commit | 45ed11f638444386d413266149edec03fef3814e (patch) | |
tree | 1a8145c16fdec69eb0a325d71abf57ba199cb522 /git-shell-commands | |
parent | 3f1168d2b0788e3fc9c5923fc9dfbaafe06f8c31 (diff) |
Work with mirrors
Diffstat (limited to 'git-shell-commands')
-rwxr-xr-x | git-shell-commands/fetch-mirrors | 20 | ||||
-rwxr-xr-x | git-shell-commands/mirrors | 11 |
2 files changed, 31 insertions, 0 deletions
diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors new file mode 100755 index 0000000..62ed9f1 --- /dev/null +++ b/git-shell-commands/fetch-mirrors @@ -0,0 +1,20 @@ +#!/bin/sh +# * fetch-mirrors +# Updates mirrors created with `mirror` +# ssh git@host fetch-mirrors + +set -e + +# Find all mirrors +mirrors | \ + while read _mirror; do + + pushd "$_mirror" >/dev/null + + git fetch + + popd >dev/null + +done + +exit $? diff --git a/git-shell-commands/mirrors b/git-shell-commands/mirrors new file mode 100755 index 0000000..d0ae3f4 --- /dev/null +++ b/git-shell-commands/mirrors @@ -0,0 +1,11 @@ +#!/bin/sh +# * mirrors +# Prints all mirrored repos +# ssh git@host mirrors + +set -e + +# Find all mirrors +find *.git -maxdepth 1 -iname config -print0 | \ + xargs -0 grep -l 'mirror = true' | \ + sed 's,/config$,,' |