制作自己的Cocoapods常用命令

Pod相关命令

1、初始化
# pod lib create xxxx

2、验证本地spec项目(带三方pod)
# pod lib lint xxxx.spec --use-libraries

3、验证本地和远程(git)项目
# pod spec lint xxxx.spec

4、提交pod项目(带三方pod)
# pod trunk push
# pod trunk push --use-libraries

5、删除pod版本
# pod trunk delete xxx x.x.x

Git相关命令
6、指定commit打上tag
# git tag -a 0.1.1 9fbc3d0

7、提交所有tag
# git push origin –-tags

8、提交指定tag
# git push origin 0.1.2

9、删除本地tag
# git tag -d 1.1

10、删除远程tag
# git push origin :1.1
// or
# git push origin --delete tag 1.1

11、删除远程commit
# git reset --hard commit_id // 本地回退到某个commit
# git push origin HEAD --force // 强制同步到远程

Leave a Reply