在使用git clone时遇见unable to update url base from redirection:问题,
解决方法:
1.使用账号和密码正确登录github
2.使用以下命令查看用户名,邮箱是否正确
$git config user.name --->查看用户名
$git config user.email --->查看邮箱
$git config --global credential.helper store -->会生成一个.gitconfig文件用来保存信息,不需要每次操作都输入密码
3.配置ssh:将文件C:\Users\xxx\.ssh下的id_rsa.pub的信息copy到git网页的ssh中的key里
4.如果是远程仓库地址发生变化导致,可以在.git的目录下使用命令查看配置,修改url
vim .git/config
5.查看是否使用代理:
git config --global http.proxy
git config --global --unset http.proxy //取消代理