summaryrefslogtreecommitdiff
path: root/git-shell-commands/mirrors
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-12-10 19:40:33 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-12-10 19:40:33 -0300
commit45ed11f638444386d413266149edec03fef3814e (patch)
tree1a8145c16fdec69eb0a325d71abf57ba199cb522 /git-shell-commands/mirrors
parent3f1168d2b0788e3fc9c5923fc9dfbaafe06f8c31 (diff)
Work with mirrors
Diffstat (limited to 'git-shell-commands/mirrors')
-rwxr-xr-xgit-shell-commands/mirrors11
1 files changed, 11 insertions, 0 deletions
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$,,'