29 lines
673 B
Bash
29 lines
673 B
Bash
|
#!/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}"
|