克隆时我收到以下错误?如何解决这个问题?
$ git clone https://github.com/xxx/yyy.git
Cloning into 'yyy'...
remote: Repository not found.
fatal: repository 'https://github.com/xxx/yyy.git/' not found
这是私有存储库的URL,您没有访问权限。 或者您确实有权访问,但不正确的凭据存储在git credential helper中。
或者您复制了一个包含小写/大写问题的URL(URL区分大小写)。
由于它是一个私人GitHub回购,你需要做的就是删除你的cached credentials:他们将在下一个git clone
再次被问到。