返回

git之配置

发布时间:2023-11-15 15:06:18 165


// 添加GIT全局配置
git config --global user.name “git” // 配置全局用户名(这个名称将被应用到创建一个ssh连接型远程资源库时)
git config --global user.email coTest_1@163.com // 配置全局邮箱
git config --global gui.encoding utf-8 // 配置GUI编码
git config --global core.quotepath false // 设置不转义中文字符(命令行或bash运行git命令时显示的文件路径不用编码模式显示)
git config --global http.postBuffer 524288000 // 配置Http的Post缓存容量
git config --global i18n.commitencoding utf-8 // 配置提交时的编码
git config --global i18n.logoutputencoding utf-8 // 配置日志输出的编码

git config --global user.name “git”
git config --global user.email coTest_1@163.com
git config --global gui.encoding utf-8
git config --global core.quotepath false
git config --global http.postBuffer 524288000
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8

// 删除配置
git config --unset --global user.name
git config --unset --global user.email
git config --unset --global gui.encoding
git config --unset --global core.quotepath
git config --unset --global http.postbuffer
git config --unset --global i18n.commitencoding
git config --unset --global i18n.logoutputencoding

// 查看Git配置信息
git config --global --list


特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线
下一篇
git之Windows 2023-11-15 12:16:09