Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想列出自安装 git 以来用户设置的所有 git 配置设置。
我不知道配置设置的任何名称或值。
(就我而言,我想找出导致特定 git 行为的原因)
git 配置设置存储在~/.gitconfig文件中。
~/.gitconfig
文件内容如下所示:
[user] name = My Name email = myemail@adress.com [color] ui = true [push] default = matching
要输出配置设置,请运行以下命令:
git config --list
或者
git config --l