CocoaPod常用指令总结

1.podspec文件验证

pod lib lint  --verbose  //显示日志

私有库a引用私有库b,私有库a在验证时 要加私有库b的git地址或私有库b加在本地的仓库名 :

pod lib lint  --verbose --sources=私有组件b的git地址,cocoapod的git地址

2.添加本地私有库

pod repo add <私有库名字> 如: pod repo add myCocoaPod  [email protected]:xx.git

3. tag操作

  3.1 显示tag

    git tag

  3.2 添加tag

   git  tag -m "说明"  如 git tag -m "first upload"  1.0

   git push --tags

  3.3 删除tag

  git tag -d 

 git push origin :refs/tags/


4. 将本地podspec添加到私有仓库

  pod repo push <私有库名字> 如:当前路径 pod repo push myCocoaPod my.podspec(可以写所在的路径/path/my.podspec)


5. Podfile文件

source 'https://github.com/CocoaPods/Specs.git'

source <私有仓库git的http地址>

platform :ios. '8.0'

targeet 'targetname' do

pod '<库名>','~> '

end




你可能感兴趣的:(CocoaPod常用指令总结)