缓存输入的用户名和密码:
git config --global credential.helper wincred
清除掉缓存在git中的用户名和密码
git credential-manager uninstall
配置连接远程:
ssh-keygen -t rsa -C “username” 生成秘钥,然后将id_rsa.pub的内容配置到git-->setting--> SSH key里面
ssh-add /C/Users/username/.ssh/id_rsa
ssh-agent bash
ssh -T -v git@git.com 检查连通性
git配置失效 git config --global --unset http.proxy
1、仓库级别 local 【优先级最高】
2、用户级别 global【优先级次之】
3、系统级别 system【优先级最低】
git 仓库级别对应的配置文件是当前仓库下的.git/config
git 用户级别对应的配置文件是用户宿主目录下的~/.gitconfig 【宿主目录:C:\Users\xiong】
git系统级别对应的配置文件是git安装目录下的 /etc/gitconfig
网络速度慢配置:
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
网友评论