git repo 的用法
时间: 2024-01-17 15:04:24 浏览: 110
repo 的用法
`git repo` 命令其实是 Google 提供的一个名为 `Repo` 的工具的简称。`Repo` 是一个多仓库管理工具,可以用来管理多个 Git 仓库。使用 `Repo` 工具可以方便地在一个主仓库中管理多个子仓库,而不必手动地一个一个去克隆或者拉取。下面介绍一些 `Repo` 常用的命令:
1. 初始化 Repo
```
repo init -u <manifest url>
```
2. 同步 Repo
```
repo sync
```
3. 查看当前仓库的状态
```
repo status
```
4. 查看所有仓库的状态
```
repo forall -c git status
```
5. 查看所有仓库的分支
```
repo forall -c git branch
```
6. 切换所有仓库分支
```
repo forall -c git checkout <branch>
```
7. 提交所有仓库的修改
```
repo forall -c git add .
repo forall -c git commit -m "commit message"
repo forall -c git push
```
以上是 `Repo` 常用的一些命令,使用 `Repo` 工具可以方便地管理多个 Git 仓库。
阅读全文