git常用总结

配置

配置文件

配置文件有三个级别 仓库>全局>系统

  1. 仓库配置
    仓库级别配置文件在.git目录

查看仓库级别的配置

1
git config --local -l

  1. 全局配置
    全局配置文件在用户目录下,.gitconfig文件

查看全局配置项

1
git config --global -l

  1. 系统配置
    系统级别的配置在git的安装目录

记录用户名、密码

1
2
3
4
git config --global credential.helper store

# 修改用户名密码
git config --global credential.helper username

设置代理

1
2
git config --global http.proxy http://127.0.0.1:808
git config --global https.proxy https://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
您的支持将鼓励我继续创作!