代码拉取完成,页面将自动刷新
#!/bin/bash
#作者:DUGIGEEK
#日期:2018.12.08
#描述:git的配置
#使用颜色打印函数
source ~/.colorc
#设置当前用户的git名称和邮箱
user_name=$(whoami)
mainproc()
{
iscygwin=$(uname -a | grep -i cygwin)
if [ ! -n "${iscygwin}" ]; then
#安装git工具
sudo apt-get install git > /dev/null 2>&1
if [ $? -ne 0 ]; then
serro "Install git [ERROR]"
exit 1
fi
sdone "Install git [OK]"
#拷贝一些脚本作为日常git管理使用
sudo cp z.003.files.git/dugi.*.sh /usr/bin/
sudo chmod 777 /usr/bin/dugi.*.sh
sdone "Config git [OK]"
else
#拷贝一些脚本作为日常git管理使用
cp z.003.files.git/dugi.*.sh /usr/bin/
chmod 777 /usr/bin/dugi.*.sh
fi
#写入用户信息
git config --global user.name "${user_name}"
sdone "git 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
sudo apt-get install -y gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
fi
#避免中文乱码
git config --global core.quotepath false
}
mainproc $@
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。