跳至主要内容

克隆仓库

当您在 GitHub 上创建代码库时,它会作为远程代码库存在。您可以克隆您的代码库以在您的计算机上创建本地副本,并在两个位置之间同步。

平台导航

关于克隆代码库

您可以将代码库从 GitHub.com 克隆到您的本地计算机或 codespace,以便更轻松地修复合并冲突、添加或删除文件以及推送更大的提交。克隆代码库时,您会将代码库从 GitHub.com 复制到您的本地计算机,或者在创建 codespace 时复制到远程虚拟机。有关克隆到 codespace 的更多信息,请参阅“为代码库创建 codespace”。

您可以将代码库从 GitHub.com 克隆到您的本地计算机,以便更轻松地修复合并冲突、添加或删除文件以及推送更大的提交。克隆代码库时,您会将代码库从 GitHub.com 复制到您的本地计算机。

您可以将代码库从 GitHub.com 克隆到您的本地计算机,以便更轻松地修复合并冲突、添加或删除文件以及推送更大的提交。克隆代码库时,您会将代码库从 GitHub.com 复制到您的本地计算机。

克隆代码库会下载 GitHub.com 在该时间点拥有的所有代码库数据的完整副本,包括项目的每个文件和文件夹的所有版本。您可以将您的更改推送到 GitHub.com 上的远程代码库,或从 GitHub.com 拉取其他人的更改。有关更多信息,请参阅“使用 Git”。

您可以克隆您现有的代码库或克隆其他人的现有代码库来为项目做贡献。

克隆代码库

  1. 在 GitHub 上,导航到代码库的主页。

  2. 在文件列表上方,单击 代码.

    Screenshot of the list of files on the landing page of a repository. The "Code" button is highlighted with a dark orange outline.

  3. 复制代码库的 URL。

    • 要使用 HTTPS 克隆代码库,在“HTTPS”下,单击.

    • 要使用 SSH 密钥克隆代码库(包括组织的 SSH 证书颁发机构颁发的证书),请单击**SSH**,然后单击.

    • 要使用 GitHub CLI 克隆代码库,请单击**GitHub CLI**,然后单击.

      Screenshot of the "Code" dropdown menu. To the right of the HTTPS URL for the repository, a copy icon is outlined in dark orange.

  4. 打开终端终端Git Bash

  5. 将当前工作目录更改为您想要克隆目录的位置。

  6. 键入git clone,然后粘贴您之前复制的 URL。

    git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
    
  7. 按**Enter**键创建您的本地克隆。

    $ git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
    > Cloning into `Spoon-Knife`...
    > remote: Counting objects: 10, done.
    > remote: Compressing objects: 100% (8/8), done.
    > remove: Total 10 (delta 1), reused 10 (delta 1)
    > Unpacking objects: 100% (10/10), done.
    

要了解有关 GitHub CLI 的更多信息,请参阅“关于 GitHub CLI”。

要本地克隆代码库,请使用repo clone子命令。将repository参数替换为代码库名称。例如,octo-org/octo-repomonalisa/octo-repoocto-repo。如果省略了OWNER/REPO代码库参数的OWNER/部分,则默认为认证用户的名称。

gh repo clone REPOSITORY

您也可以使用 GitHub URL 克隆代码库。

gh repo clone https://github.com/PATH-TO/REPOSITORY
  1. 在 GitHub 上,导航到代码库的主页。

  2. 在文件列表上方,单击 代码.

    Screenshot of the list of files on the landing page of a repository. The "Code" button is highlighted with a dark orange outline.

  3. 要使用 GitHub Desktop 克隆并打开代码库,请单击 使用 GitHub Desktop 打开.

    Screenshot of the "Code" dropdown for a repository. A button, labeled "Open with GitHub Desktop" is outlined in dark orange.

  4. 按照 GitHub Desktop 中的提示完成克隆。

有关更多信息,请参阅“将代码库从 GitHub 克隆到 GitHub Desktop”。

克隆空代码库

空代码库不包含任何文件。如果您在创建代码库时未用 README 初始化代码库,通常会创建空代码库。

  1. 在 GitHub 上,导航到代码库的主页。

  2. 要使用命令行使用 HTTPS 克隆您的代码库,在“快速设置”下,单击。要使用 SSH 密钥克隆代码库(包括组织的 SSH 证书颁发机构颁发的证书),请单击**SSH**,然后单击.

    Screenshot of the quick setup instructions for an empty repository. To the right of the HTTPS URL for the repository, a copy icon is outlined in dark orange.

    或者,要在 Desktop 中克隆您的代码库,请单击 **在 Desktop 中设置**并按照提示完成克隆。

    Screenshot of the quick setup instructions for an empty repository. A button, labeled with a download icon and "Set up in Desktop," is outlined in dark orange.

  3. 打开终端终端Git Bash

  4. 将当前工作目录更改为您想要克隆目录的位置。

  5. 键入git clone,然后粘贴您之前复制的 URL。

    git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
    
  6. 按**Enter**键创建您的本地克隆。

    $ git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
    > Cloning into `Spoon-Knife`...
    > remote: Counting objects: 10, done.
    > remote: Compressing objects: 100% (8/8), done.
    > remove: Total 10 (delta 1), reused 10 (delta 1)
    > Unpacking objects: 100% (10/10), done.
    

克隆错误排查

克隆代码库时,可能会遇到一些错误。

如果您无法克隆代码库,请检查

  • 您可以使用 HTTPS 连接。有关更多信息,请参阅“克隆错误排查”。
  • 您有权访问您想要克隆的代码库。有关更多信息,请参阅“克隆错误排查”。
  • 您想要克隆的默认分支仍然存在。有关更多信息,请参阅“克隆错误排查”。

进一步阅读