summaryrefslogtreecommitdiff
path: root/git-shell-commands/mirror
diff options
context:
space:
mode:
authorParabola git <git@parabola.nu>2016-07-08 01:49:08 +0000
committerParabola git <git@parabola.nu>2016-07-08 01:49:08 +0000
commit46cd6b50d323fd6c73e5aee460d722e308a82dfb (patch)
treea68e3a2be62cbcb208f1e79bfee69704cc51f953 /git-shell-commands/mirror
parent692108af078a633a684868a47ba309a666891d4f (diff)
remove mirror commands
Diffstat (limited to 'git-shell-commands/mirror')
-rwxr-xr-xgit-shell-commands/mirror10
1 files changed, 0 insertions, 10 deletions
diff --git a/git-shell-commands/mirror b/git-shell-commands/mirror
deleted file mode 100755
index 8d7a648..0000000
--- a/git-shell-commands/mirror
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-# * mirror
-# Mirror the repository
-# ssh git@host mirror git://url/repo.git
-
-set -E
-
-for _m in "$@"; do
- git clone --mirror "$_m"
-done