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 config --global credential.helper store

猜你喜欢

转载自blog.csdn.net/m0_46893049/article/details/126367939