blob: 673f0d7d2540610c7cac562646640d14e75b8c70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/env bash
if [ $# -ne 1 ]; then
echo "usage: clone <name>"
exit 1
fi
USER="compromyse"
base_dir="$HOME"
new_repo="${base_dir}/$1"
case $new_repo in
*\.git)
;;
*)
new_repo="${new_repo}.git"
;;
esac
if [ -d "$new_repo" ]; then
echo "$new_repo already exists"
exit 1
fi
mkdir "$new_repo"
git clone --bare "git@github.com:$USER/$1" "$new_repo" \
&& echo "Cloned Git repository to: git@$(uname -n):$1"
|