私有存储库的git clone出错

问题描述 投票:1回答:1

我正在尝试克隆一个私有存储库。我试过两种方法

  1. 使用Android Studio

结果enter image description here

  1. 使用CMD

结果

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

屏幕截图以验证回购

enter image description here

我如何访问我的私人存储库?

git github cmd git-clone
1个回答
1
投票

导致此错误的原因可能有多种。请按照提及的顺序进行操作

  1. 在repo网址中包含您的用户名
git clone https://[email protected]/thoughtcastapp/git.android.ThoughtCast.git/
  1. 识别终端的远程git存储库。
git remote set-url origin https://github.com/thoughtcastapp/git.android.ThoughtCast.git/
  1. 卸载git凭据管理器并重新安装(对于cmd,以管理员身份运行)
$ sudo git credential-manager uninstall
$ sudo git credential-manager install
  1. 如果repo已由其他用户创建,请检查您是否具有读写访问权限。
© www.soinside.com 2019 - 2024. All rights reserved.