git添加tag :
git tag '1.0.0'
git push --tags
git 删除 tag:
git tag -d '1.0.0'
git push origin :refs/tags/'1.0.0'
本地代码推送到新的远程tag:
git push origin '1.0.0'
Cocoapods 创建pod 资料:
https://segmentfault.com/a/1190000012269307
https://www.cnblogs.com/czc-wjm/p/5958103.html