*initify now automatically disables sslVerify for the repo

This commit is contained in:
Austen Adler 2014-08-12 15:18:54 -04:00
parent c8cda38476
commit d84e504586

4
zshrc
View File

@ -134,6 +134,7 @@ function cinitify(){
git remote add oOrigin git@10.0.1.200:$1/$2.git
git remote add oHttps https://10.0.1.200/gitlab/$1/$2.git
git remote -v
git config http.sslVerify false
if [[ ! $3 == "-r" ]] ; then
echo -n "Pull from: "
read from
@ -149,6 +150,7 @@ function initify(){
git remote add oOrigin git@10.0.1.200:$1/$2.git
git remote add oHttps https://10.0.1.200/gitlab/$1/$2.git
git remote -v
git config http.sslVerify false
if [[ ! $3 == "-r" ]] ; then
echo -n "Pull from: "
read from
@ -197,4 +199,4 @@ function k(){
fi
fi
}
function mcl(){ mkdir "$@"&&k "$@"; }
function mcl(){ mkdir "$@"&&k "$@"; }