This commit is contained in:
2017-03-20 12:26:35 -04:00
parent cbf9f50050
commit 0f44f41031
17 changed files with 18 additions and 367 deletions

10
scripts/clone.sh Normal file
View File

@ -0,0 +1,10 @@
name="$1";
sshURL="$2";
install_dir="$3";
mkdir -p $install_dir;
cd $install_dir;
git clone $install_dir;
git fetch origin $name:$name;
exit 0;