git全局配置git config --global

git config --global命令用于设置全局的Git配置。一些常见的全局配置选项:

0-你可以使用以下命令查看已经设定过的全局配置:

git config --global --list

这将列出所有全局配置选项及其值。

1-用户名和邮箱

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

2-编辑器

git config --global core.editor "vim"

3-差异比较工具

git config --global diff.tool "vimdiff"

4-合并工具

git config --global merge.tool "vimdiff"

5-颜色

git config --global color.ui true

6-自动补全

git config --global completion.no_files true

7-忽略文件

git config --global core.excludesfile ~/.gitignore_global

8-代理

git config --global http.proxy http://proxy.example.com:8080
git config --global https.proxy https://proxy.example.com:8080

9-自动清理

git config --global clean.requireForce false

10-自动合并

git config --global pull.rebase false
posted @ 2022-01-07 10:48  Journey&Flower  阅读(22)  评论(0编辑  收藏  举报