一、创建远程私有库的步奏
1、到一个文件夹,先让其和git有关联使用命令:git init
2、修改文件后,让其先添加到本地关联:
git add .
git commit -m “修改的内容”
3、推送到远端
git remote add origin 远端仓库地址
git push origin master 推送到远端主分支
4、 绑定tag并推送
git tag ‘推送的版本号’
git push — tags
5、删除标签
git push origin:标签
6、查看状态
7、 创建spec
pod spec create 名称 。编辑名称,然后上传到远端
8、创建远端仓库并加入到coacoas管理:
验证其有效性pod lib lint --allow-warnings --no-clean
pod repo add 私有库名字 远端仓库地址
9、向私有的库添加spec
pod repo push caocaoRepo CC_CommonResources.podspec Bose
pod repo push 仓库名字 ❎❎❎.podspec --use-libraries --verbose --allow-warnings
10、制作私有库验证时报静态库错误,阔以加(--allow-warnings --no-clean --verbose --use-libraries):pod lib lint --allow-warnings --no-clean --verbose --use-libraries
11、如果pod install时报静态库错误,需去掉坡地了里的use_frameworks!
12、移除缓存区内容:
一种是git rm --cached "文件路径",不删除物理文件,仅将该文件从缓存中删除;
一种是git rm --f "文件路径",不仅将该文件从缓存中删除,还会将物理文件删除(不会回收到垃圾桶)。
14、pod search ❌❌❌ 报错[!] Unable to find a pod with name, author, summary, or description matching `❌❌❌`
找到~/Library/Caches/CocoaPods/search_index.json文件,删除search_index.json。
终端输入rm ~/Library/Caches/CocoaPods/search_index.json