git学习如何编辑git config --global的配置文件
Posted 欧阳鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git学习如何编辑git config --global的配置文件相关的知识,希望对你有一定的参考价值。
一、需求描述
1.1 git config --global --list 查看全局配置
C:\\Users\\000>git config --global --list
user.name=ouyangpeng
user.email=oyp@xxx.com
alias.st=status
alias.ci=commit
alias.co=checkout
alias.br=branch
color.ui=true
core.autocrlf=true
core.excludesfile=C:\\Users\\000\\Documents\\gitignore_global.txt
http.sslversion=tlsv1.2
http.sslverify=false
http.sslbackend=openssl
1.2 打开Git的全局配置文件进行编辑修改
我们查看了全局配置,如何一般添加全局配置都是使用git config --global
命令。
比如我在博客
【git学习】git clone 出错 error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
中修改http.sslVersion
的配置,如下所示:
C:\\Users\\000>git config --global --add http.sslVersion tlsv1.2
C:\\Users\\000>git config --global --add http.sslbackend openssl
但是除了使用git config --global
来配置外,还可以直接打开Git的全局配置文件进行编辑修改。
使用如下命令
git config --global --edit
就会打开配置文件,进行编辑,使用vim命令即可编辑,如下所示:
以上是关于git学习如何编辑git config --global的配置文件的主要内容,如果未能解决你的问题,请参考以下文章