repo常用命令

repo相关命令

Repo 详解

repo 下载代码在根目录下  repo sync

更新代码也是在根目录下 repo sync

2.4 repo checkout(切换分支)

 Usage:

repo checkout   […]

实际上是对git checkout 命令的封装,但不能带-b参数,所以不能用此命令来创建特性分支。

Example:

repo checkout crane-dev 

repo checkout crane-dev  platform/build  platform/bionic

2.5 repo branches(查看分支)

Usage:

repo branches […]

Example:

repo branches 

repo branches platform/build platform/bionic

你可能感兴趣的:(linux,运维,github)