如何在podfile中获取git branch?

时间:2019-06-24 10:19:30

标签: ios git cocoapods podfile

所以我正在使用cocoapods在iOS项目中工作。我有一些通过cocoapods添加的自定义库。例如:

select TPosTSalRC.XVSahDocNo,TPosTSalRC.XVSarStaRcvType,TPosTSalHD.XVBchCode,TPosTSalHD.XTSahSalDate,cnt=count(*) 
from TPosTSalRC
inner join TPosTSalHD
on TPosTSalRC.XVSahDocNo = TPosTSalHD.XVSahDocNo
where XVSarStaRcvType = '3'
group by TPosTSalRC.XVSahDocNo,TPosTSalRC.XVSarStaRcvType,TPosTSalHD.XVBchCode,TPosTSalHD.XTSahSalDate
having count(*)>1

我想根据我当前的git分支来更改MyLibrary的版本。像这样:

pod 'MyLibrary', :git => 'git@git.mydomain.com:pods/mylibrary-pod.git', :tag => '1.1'

但是我不知道是否有任何方法可以从本地存储库中检查当前的git分支。有人知道这是否可行和实现的方法吗?

1 个答案:

答案 0 :(得分:-1)

在这里您可以看到From a podspec in the root of a library repo.的准则 喜欢使用Almofire

pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'dev'

希望这会有所帮助,谢谢