跳至主要内容

克隆仓库

在 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”。

克隆空存储库

空存储库不包含任何文件。如果您在创建存储库时未使用自述文件初始化存储库,则通常会创建它。

  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.
    

故障排除克隆错误

克隆存储库时,可能会遇到一些错误。

如果您无法克隆存储库,请检查

进一步阅读