Added gitlab tester script for linux

This commit is contained in:
Austen Adler 2014-04-27 19:19:17 -04:00
parent b506bcb7ee
commit c85ca7b176

28
gitlabTest.sh Executable file
View File

@ -0,0 +1,28 @@
#!/bin/bash
green='\e[0;32m'
close='\e[0m'
mkdir -p /tmp/tests
echo -e "${green}Making test directories${close}"
cd /tmp/tests
mkdir a
mkdir b
cd /tmp/tests/a
git init
git remote add origin git@76.182.74.61:hitchhikers/MyRobot.git
echo -e "${green}SSH cloning${close}"
git pull origin master
echo -e "${green}"
ls
echo -e "${close}"
cd /tmp/tests/b
git init
git remote add origin https://76.182.74.61/gitlab/hitchhikers/MyRobot.git
git config http.sslVerify false
echo -e "${green}HTTPS cloning${close}"
git pull origin master
echo -e "${green}"
ls
echo -e "${close}"
echo -e "${green}Removing test directories${close}"
rm -rf tests
echo -e "${green}Done testing!${close}"