git clone时报错remote: The project you were looking for could not be found or you don‘t have permission

git clone报错

remote: The project you were looking for could not be found or you don’t have permission to view it.
fatal: repository ‘https://119.23.248.3/xxxx/pad.git’ not found

解决方法:

第一步

清除本地 git 账户,重新输入用户名密码

git config --system --unset credential.helper

此时本地所有的保存的git用户名和密码都是被清空,以后只要是再克隆新项目或者在提交拉去代码的时候都是需要重新输入用户名和密码,如果我们不想要每次都重新输入用户名和密码,请看第二步。

第二步

避免每次git操作都要输入账号密码

git config --global credential.helper store

输入完这个命令之后,再输入用户名和密码一次以后新项目就不用再手动输入了,不过一定要记住,这一次一定要输入正确,否则就又要回到第一步去清空本地git的用户名和密码了!!!

你可能感兴趣的:(git)