pod repo add demo http://demo.git // 拉取git私有库
pod lib create demo // 创建pod项目
修改spec文件
pod lib lint --allow-warnings --verbose
git remote add origin http://demo.git
git add .
git commit -m "init spec"
git push origin master
git push origin master -f 强制提交,会覆盖之前的文件
git tag -m "version_1" 0.1.0
git push --tags
pod lib lint --no-clean --use-libraries --verbose