diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-15 15:55:08 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-15 15:55:08 -0400 |
commit | a7ed703d2d983b0b7fd796fba60a2592e9edd262 (patch) | |
tree | 48fdf25db96d79fa9ea74343d661fb46bd86d1d3 /misc/git-shell-commands/mirror | |
parent | 2fe1fdd57acf7b4d5f51da4801a2c93e34dc8d5d (diff) |
remove non-tool stuff
Diffstat (limited to 'misc/git-shell-commands/mirror')
-rwxr-xr-x | misc/git-shell-commands/mirror | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/misc/git-shell-commands/mirror b/misc/git-shell-commands/mirror deleted file mode 100755 index 8282e9b..0000000 --- a/misc/git-shell-commands/mirror +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# * mirror -# Espeja un repositorio -# ssh git@host mirror git://url/repo.git - -set -E - -for _m in "$@"; do - git clone --mirror "$_m" -done |