Git操作

1.通过图形工具操作出现 remote: HTTP Basic: Access denied fatal: Authentication failed for "xxx你的远程仓库"
远程仓库的用户信息和本地保存的用户信息检验不一致。
通过命令行:

 ~ % sudo git config --system --unset credential.helper
~ % git config --global http.emptyAuth true  

通过命令行重新提交一分记录或者一个分支。

你可能感兴趣的:(Git操作)