GitError
子月吾生
one day by one day
展开
-
git remote: HTTP Basic: Access denied报错解决
git error: git remote: HTTP Basic: Access denied问题原因: 可能是刚改过远程仓库密码,造成本地git配置的用户名、密码与gitlab上注册的用户名、密码不一致。1、解决方法一:跟着图示步骤走然后继续使用soucetree 会弹窗 提示输入用户名密码 就好了2、解决方法二:如果账号密码有变动 用下面命令 重新输入账号密码git config –system –unset credential.helper用了第一个命令 还不能解决问原创 2021-05-12 15:53:23 · 1401 阅读 · 0 评论 -
git中push或者clone时报错the remote end hung up unexpectedly
使用git提交或者克隆时出现the remote end hung up unexpectedly的异常,原因应该是网络原因引起的而且文件可能比较大的情况下解决办法是:配置git的最低速度和最低速度时间,命令如下:git config --global http.lowSpeedLimit 0git config --global http.lowSpeedTime 999999其...原创 2019-06-01 12:44:53 · 2958 阅读 · 0 评论 -
解决git中push时报错fatal:remote origin already exists
使用git 添加远程仓库或者提交文件时·报如下错误:解决办法如下:先删除远程git库$ git remote rm origin再添加git远程库git remote add origin git@github.com:H3X6Q9/myProjects.git过程如下图:其中git remote -v 是查看远程库连接状态,没有任何提示代表没有连接上远程库。...原创 2019-06-01 09:50:53 · 448 阅读 · 0 评论