git clone语法
时间: 2023-10-16 22:32:05 浏览: 111
git常用操作命令
git clone <repository> <directory>
- `<repository>`:要克隆的远程 Git 仓库的 URL。
- `<directory>`:将仓库克隆到本地的目录名。
例如:
```
git clone https://github.com/username/repo.git my-repo
```
这将从远程仓库 `https://github.com/username/repo.git` 克隆代码到本地名为 `my-repo` 的目录。
阅读全文