git使用过程中遇见的坑(一)

                                                      git使用过程中遇见的坑(一)

在git  push、git  pull、git clone中出现后,解决步骤:

fatal: unable to access 'https://git.gitbook.com/alleniverson/mybook.git/': The requested URL returned error: 403

1.断网,再重新push或pull,可能原因是,版本管理系统服务器出错了,git版本管理系统一周会下出现两到三次的网络不稳定属于正常现象。若不行,执行第二条命令。

2.在终端输入命令:

git config --global credential.helper store

重新配置账号和密码。


猜你喜欢

转载自blog.csdn.net/qq_15256443/article/details/80530180