克隆存储库

git clone 命令用于将现有 Git 存储库从服务器复制到本地计算机。

例如,要克隆 GitHub 项目:

cd <path where you'd like the clone to create a directory>
git clone https://github.com/username/projectname.git

要克隆 BitBucket 项目:

cd <path where you'd like the clone to create a directory>
git clone https://yourusername@bitbucket.org/username/projectname.git

这将在本地计算机上创建一个名为 projectname 的目录,其中包含远程 Git 存储库中的所有文件。这包括项目的源文件,以及包含项目的整个历史记录和配置的 .git 子目录。

要指定目录的其他名称,例如 MyFolder

git clone https://github.com/username/projectname.git MyFolder

或者在当前目录中克隆:

git clone https://github.com/username/projectname.git .

注意:

  1. 克隆到指定目录时,该目录必须为空或不存在。

  2. 你还可以使用命令的 ssh 版本:

    git clone git@github.com:username/projectname.git
    

https 版本和 ssh 版本相同。但是,一些托管服务如 GitHub 建议你使用 https 而不是 ssh