问题
报错:error: The requested URL returned error: 401 Unauthorized while accessing git版本:1.7.1解决方法一:指定用户
git clone https://github.com/org/project.git换成
git clone https://username@github.com/org/project.git 或者 git clone https://username:password@github.com/org/project.git在push或者pull出出现的话,则需要更改远程地址
git remote set-url origin https://username@github.com/org/project.git解决方法二:去除验证
git config –global http.sslverify false解决方法三:(推荐)
升级git 版本≥1.7.10解决方法四:
添加ssh秘钥