建立Pod私有库

2018-08-30  本文已影响0人  ledka

source仓库

# pod repo add [Private Repo Name] [GitHub HTTPS clone URL]
$ pod repo add MyPodSpecs https://xxx/MyPodSpecs.git

私有库

pod lib create MyLib
git add .
$ git commit -s -m "初始化MyLib 库"
$ git remote add origin git@xxx/MyLib.git           #添加远端仓库
$ git push origin master     #提交到远端仓库
$ git tag -m "first release" "0.1.0" #打上标签,这个很重要
$ git push --tags     #推送tag到远端仓库
# --use-libraries 包含静态库
pod lib lint --use-libraries --allow-warnings
pod repo push MusicPodSpecs  MusicUMeng.podspec --allow-warnings --use-libraries
上一篇下一篇

猜你喜欢

热点阅读