我正在尝试克隆一个私有存储库。我试过两种方法
结果
C:\thoughtcast>git clone https://github.com/thoughtcastapp/git.android.ThoughtCast.git
Cloning into 'git.android.ThoughtCast'...
remote: Repository not found.
fatal: repository 'https://github.com/thoughtcastapp/git.android.ThoughtCast.git/' not found
屏幕截图以验证回购
我如何访问我的私人存储库?
导致此错误的原因可能有多种。请按照提及的顺序进行操作
- 在repo网址中包含您的用户名
git clone https://[email protected]/thoughtcastapp/git.android.ThoughtCast.git/
- 识别终端的远程git存储库。
git remote set-url origin https://github.com/thoughtcastapp/git.android.ThoughtCast.git/
- 卸载git凭据管理器并重新安装(对于cmd,以管理员身份运行)
$ sudo git credential-manager uninstall
$ sudo git credential-manager install
- 如果repo已由其他用户创建,请检查您是否具有读写访问权限。