赞
踩
首先检查本地是否存在需要的私有索引库
pod repo list
例如:dp_base_ios_spec 在本地不存在该私有索引库
在git下下创建一个新的库,这个库用来保存私有库的podspec文件,取名叫xxxSpec用以区分这个库的作用,如下base_ios_spec索引库
接着创建本地索引库,也就是将刚才创建的远程索引库dp_base_ios_spec关联到本地
pod repo add base_ios_spec git@git.xxx/base_ios_spec.git
此时本地就有了 base_ios_spec这个索引库
首先创建本地私有库(该库是代码库)
pod lib create DPApplePurchasing
按照提示输入相应的配置
配置完成后会自动打开一个xcode工程,具体层级如下图
在CommonUtil里面放入自己的私有库代码同时删除掉ReplaceMe
到demo中进行
pod install
然后编写podspec文件,详情见以下
cd existing_folder git init git remote add origin git@xxx/dpalipaymodule.git git add . git commit -m "Initial commit"
cd existing_repo git remote rename origin old-origin git remote add origin git@xxx/dpalipaymodule.git
git pull --rebase origin master 拉取远程仓库的内容和本地的合并
git push -u origin master 将代码推送到远程仓库的master分支
组组件依赖了三方QKYYKit,需要添加三方库的git地址
pod lib lint --sources="https://github.com/CocoaPods/Specs.git" --use-libraries --allow-warnings --no-clean
出现上述提示,代表本地校验成功
pod spec lint --sources="https://github.com/CocoaPods/Specs.git" --use-libraries --allow-warnings
出现以上错误信息,表示需要先打tag才能进行远程校验
执行完第六步再次执行上面的远程校验显示如下,代表远程校验通过
pod repo push dp_base_ios_spec CommonUtil.podspec --verbose --use-libraries --allow-warnings
上传成功后在远程和本地索引库显示如上
到此手动发布私有库CommonUtil 成功,就可以正常使用
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。