7c408d6d70
Signed-off-by: Billy Brawner <billy@wbrawner.com>
10 lines
169 B
Bash
Executable file
10 lines
169 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
if [[ -z "$1" ]]; then
|
|
echo "Please enter a repository URL"
|
|
exit 1
|
|
fi
|
|
|
|
/usr/bin/git clone --mirror "$1"
|
|
echo "Successfully created a mirror of $1"
|
|
|