28 lines
349 B
Markdown
28 lines
349 B
Markdown
|
|
```bash
|
|
# 验证远程仓库可达
|
|
check
|
|
|
|
# 发行某个模块 eg. myapp
|
|
publish myapp
|
|
|
|
# 列出已安装版本 eg. myapp
|
|
list myapp
|
|
# 输出:
|
|
# 1.0.0
|
|
# * 1.2.0 (current)
|
|
# 1.2.1
|
|
|
|
# 安装某个模块 eg. myapp
|
|
install myapp
|
|
|
|
# 切换到版本 1.2.0
|
|
use myapp@1.2.0
|
|
|
|
# 回滚到上一个版本
|
|
rollback myapp
|
|
|
|
# 删除模块
|
|
remove myapp
|
|
```
|