配置
配置文件
配置文件有三个级别 仓库>全局>系统
- 仓库配置
仓库级别配置文件在.git目录
查看仓库级别的配置
1 | git config --local -l |
- 全局配置
全局配置文件在用户目录下,.gitconfig文件
查看全局配置项
1 | git config --global -l |
- 系统配置
系统级别的配置在git的安装目录
记录用户名、密码
1 | git config --global credential.helper store |
设置代理
1 | git config --global http.proxy http://127.0.0.1:808 |
删除配置
1 | git config --unset xxx |
拉取远程仓库分支
1 | git pull <远程库名> <远程分支名>:<本地分支名> |
问题处理
warning: http.proxy has multiple values
1 | git config --unset-all http.proxy |