Git 克隆远程仓库
克隆远程仓库是指将远程仓库的内容完整地复制到本地计算机上,创建一个与远程仓库相同的Git仓库副本。通过 git clone
命令完成。
git clone 命令
运行 git clone
命令,后面跟着远程仓库地址。例如:
git clone https://github.com/username/repository.git
将 https://github.com/username/repository.git
替换成你实际的远程仓库地址。
其他选项
- 指定本地文件夹名称: 你可以使用
git clone <远程仓库地址> <本地文件夹名称>
来指定本地文件夹的名称。 - 克隆特定分支: 可以使用
git clone -b <分支名称> <远程仓库地址>
来克隆指定分支。 - 浅克隆 (shallow clone): 可以使用
git clone --depth 1 <远程仓库地址>
只克隆最新的提交历史,节省时间和空间。
示例
# 克隆到当前目录,使用默认仓库名称
git clone https://github.com/octocat/Spoon-Knife.git
# 克隆到名为 "my-spoon-knife" 的文件夹
git clone https://github.com/octocat/Spoon-Knife.git my-spoon-knife
# 克隆 "main" 分支
git clone -b main https://github.com/octocat/Spoon-Knife.git
# 浅克隆,只获取最新的提交历史
git clone --depth 1 https://github.com/octocat/Spoon-Knife.git
克隆完成后,你就可以在本地修改代码,然后使用 git add
、 git commit
、 git push
等命令进行版本控制。