克隆儲存庫

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