跳至主要内容

克隆仓库

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

平台导航

关于克隆仓库

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

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

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

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

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

克隆仓库

  1. 在 GitHub.com 上,导航到仓库的主页。

  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.com 上,导航到仓库的主页。

  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.com 上,导航到仓库的主页。

  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.

    或者,要克隆您在桌面上的仓库,请点击 **在桌面中设置** 并按照提示完成克隆。

    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 连接。有关更多信息,请参阅“克隆错误排查”。
  • 您有权访问要克隆的仓库。有关更多信息,请参阅“克隆错误排查”。
  • 您要克隆的默认分支仍然存在。有关更多信息,请参阅“克隆错误排查”。

进一步阅读