自学内容网 自学内容网

【Git】Git配置

1、查看全局配置

git config --global --list

这个命令会列出所有在全局配置文件中设置的选项。全局配置文件通常位于你的用户主目录下的 .gitconfig 文件或 .config/git/config 文件中(取决于操作系统和 Git 的版本)。

例如,笔者笔记本的全局配置:

larrylay@larrylaydeMacBook-Air ~ % git config --global --list              
core.autocrlf=input
user.name=larrylay
user.email=myphoenix6@foxmail.com
commit.amend=false

2、查看特定的配置项,比如 user.nameuser.email

git config --global user.name
git config --global user.email

3、设置全局用户信息

git config --global user.name "Your Name"
git config --global user.email "you@example.com"

如果只想为单个仓库设置这些信息(即只应用于特定的仓库),需要在该仓库的目录中运行以下命令,而不需要 --global 参数:

git config user.name "Your Name"
git config user.email "you@example.com"

原文地址:https://blog.csdn.net/m0_46308522/article/details/145244438

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!