iOS - 制作私有仓库

制作私有仓库

创建两个仓库地址一个存放代码仓库、一个存放配置.podspec
1
2
3
4
// 存放代码
https://gitlab.sspp.com/flutter/flutter_product.git
// 存放配置
https://gitlab.sspp.com/flutter/FlutterSpecs.git
将这个远程的私有版本仓库添加到本地,终端执行
1
pod repo add FlutterSpec https://gitlab.sspp.com/flutter/FlutterSpecs.git
创建pod项目文件
1
pod lib create flutter_product

根据提示创建项目,进入Example文件,打开工程,替换Classes下的文件,修改XXX.podspec文件
如果工程已经存在缺少配置文件:pod spec create SPUIKit
本地工程与远程代码库链接,参考: 备注

提交代码
1
2
3
4
git add -A 
git commit -a -m "init library"
git remote add origin https://gitlab.sspp.com/flutter/flutter_product.git
git push origin master
因为podspec文件获取版本控制的项目需要tag号,所以还要打上一个tag
1
2
git tag -m "first release" 0.0.1
git push --tags
验证.podspec
1
pod lib lint
通过验证之后,提交podspec
1
pod repo push FlutterSpecs flutter_product.podspec
pod 导入使用
1
2
3
4
5
6
// 表示使用静态库或者framework
pod lib lint --use-libraries
// 允许警告
pod lib lint --allow-warnings`
// push repo报错,需要重新打tag重新上传,
pod repo push FlutterSpecs flutter_product.podspec --use-libraries --allow-warnings
更新私有库
1
2
3
4
5
6
7
// 在代码仓库如:FlutterModule,添加代码,提交,记得修改podspecs文件中的版本号
git add .
git commit -m "新增功能"
git push origin master
// 添加tag,跟podspecs配置中的版本号一致
git tag 0.0.2
git push --tags
提交配置文件
1
2
3
4
5
6
7
// 验证podspecs
pod lib lint

// 这一步可省略(步骤2已经做过)
pod repo add SPSpecs https://gitlab.sspp.com/privatePod/SPSpecs.git

pod repo push SPSpecs FlutterModule.podspec
验证是否配置成功
1
2
3
4
// 验证是否上传成功:
pod search FlutterModule
// 在项目的podfile中添加
pod 'FlutterModule', '~> 0.0.2'

记得使用: pod repo update更新库
此时也可以在 ~/.cocoapods/repos/ 中查看FlutterModule中有新增 0.0.2 版本

备注

Git全局设置
1
2
git config --global user.name "your name"
git config --global user.email "your email"
创建新版本库
1
2
3
4
5
6
git clone git@gitlab.sspp.com:privatePod/SPShare.git
cd SPShare
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
已存在的文件夹
1
2
3
4
5
6
cd existing_folder
git init
git remote add origin git@gitlab.sspp.com:privatePod/SPShare.git
git add .
git commit -m "Initial commit"
git push -u origin master
已存在的git版本库
1
2
3
4
5
cd existing_repo
git remote rename origin old-origin
git remote add origin git@gitlab.sspp.com:privatePod/SPShare.git
git push -u origin --all
git push -u origin --tags