summaryrefslogtreecommitdiff
path: root/git-shell-commands/fetch-mirrors
diff options
context:
space:
mode:
Diffstat (limited to 'git-shell-commands/fetch-mirrors')
-rwxr-xr-xgit-shell-commands/fetch-mirrors20
1 files changed, 20 insertions, 0 deletions
diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors
new file mode 100755
index 0000000..a9442ba
--- /dev/null
+++ b/git-shell-commands/fetch-mirrors
@@ -0,0 +1,20 @@
+#!/bin/sh
+# * fetch-mirrors
+# Actualiza el `mirrors` (espejos) creados con `mirror`
+# ssh git@host fetch-mirrors
+
+set -e
+
+# Find all mirrors
+~/git-shell-commands/mirrors | \
+ while read _mirror; do
+
+ pushd "$_mirror" >/dev/null
+
+ git remote update
+
+ popd >/dev/null
+
+done
+
+exit $?