1. 发布升级版本:(--t 版本, --d 部署环境,--des 版本描述,--m 是否强制更新)
code-push release-react BitMore ios --t "1.2.1" --dev false --d Staging --des "" --m false
(1)1.2.1;(2)*所有版本;(3)1.2.x;(4)1.2.3 - 1.2.7 ;(5)>=1.2.3 <1.2.7
(6)~1.2.3 大于等于1.2.3小于1.3.0 ;(7)^1.2.3 大于等于1.2.3小于2.0.0
2. 查看app最新版本信息:
code-push deployment ls BitMore
3. 查看部署的key
code-push deployment ls BitMore -k
4. 部署回滚: (回滚app BitMore 部署环境Staging下到上一个版本)
code-push rollback BitMore Staging
3. 查看app历史版本:
code-push deployment history BitMore Staging ((Production 或者 Staging)
4. code-push app:
add AppName ios react-native (添加app)
ls (列出所有app)
rm AppName (删除app)
rename nowAppName newAppName (给已有app重命名)
5. code-push deployment BitMore
add Staging1 (为BitMore添加部署环境Staging1)
clear Staging1 (清除部署环境Staging1下的所有发布的版本)
remove/rm Staging1 (删除部署环境Staging1)
rename Staging1 Staging2 (重命名部署环境Staging1为Staging2)
list / ls 以及 history (略)
6.部署的增加-删除-修改 (这三个操作不常用)
code-push deployment add BitMore1
code-push deployment rm BitMore
code-push deployment rename BitMore2