代码拉取完成,页面将自动刷新
#!/bin/bash
#作者:DUGIGEEK
#日期:2018.12.08
#描述:git的配置
#-------------------------------------------------
function pok(){ (echo -e "\033[47;42m$*\033[0m";) }
function sok(){ (echo -e "\033[32;01m$*\033[0m";) }
function perr(){ (echo -e "\033[47;41m$*\033[0m";) }
function serr(){ (echo -e "\033[31;01m$*\033[0m";) }
function pdone(){ (echo -e "\033[47;42m$*\033[0m";) }
function perro(){ (echo -e "\033[47;41m$*\033[0m";) }
function pwarn(){ (echo -e "\033[30;43m$*\033[0m";) }
function pnote(){ (echo -e "\033[47;45m$*\033[0m";) }
function pshow(){ (echo -e "\033[47;46m$*\033[0m";) }
function pshow(){ (echo -e "\033[47;46m$*\033[0m";) }
function pinfo(){ (echo -e "\033[30;44m$*\033[0m";) }
function pecho(){ (echo -e "\033[30;47m$*\033[0m";) }
function sdone(){ (echo -e "\033[32;01m$*\033[0m";) }
function sinfo(){ (echo -e "\033[34;01m$*\033[0m";) }
function swarn(){ (echo -e "\033[33;01m$*\033[0m";) }
function serro(){ (echo -e "\033[31;01m$*\033[0m";) }
function snote(){ (echo -e "\033[35;01m$*\033[0m";) }
function sshow(){ (echo -e "\033[36;01m$*\033[0m";) }
#-------------------------------------------------
#设置当前用户的git名称和邮箱
user_name=$(whoami)
iscygwin=$(uname -a | grep -i cygwin)
if [ -n "${iscygwin}" ]; then
export MSUDO=""
export MAPT=echo
else
export MSUDO=sudo
export MAPT=apt-get
fi
mainproc()
{
if [ -z "${iscygwin}" ]; then
$MSODO $MAPT install git -y
if [ $? -ne 0 ]; then
serro "Install git [ERROR]"
exit 1
fi
sdone "Install git [OK]"
fi
#写入用户信息
git config --global user.name "${user_name}"
#sdone "\ngit config --global user.name \"${user_name}\" [OK]"
git config --global user.email "${user_mail}"
#sdone "git config --global user.email \"${user_mail}\" [OK]"
#不自动识别转义字符(防止git status中文乱码)
git config --global core.quotepath false
#sdone "git config --global core.quotepath false [OK]"
#不自动替换crlf格式(防止shell无法执行)
git config --global core.autocrlf false
#sdone "git config --global core.autocrlf false [OK]"
#防止GnuTLS错误
isnotify=$(cat ~/.bashrc|grep GIT_SSL_NO_VERIFY)
if [ -z "$isnotify" ]; then
echo 'export GIT_SSL_NO_VERIFY=1' >> ~/.bashrc
git config --global --unset http.proxy
git config --global --unset git.proxy
if [ -z "${iscygwin}" ]; then
$MSUDO $MAPT install -y gnutls-bin
fi
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
fi
#避免中文乱码
git config --global core.quotepath false
sdone OK
}
mainproc $@
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。