我们在Bitbucket的私人仓库中有一个库,我们希望在开发人员内部共享。
如何使用Carthage等包裹管理器处理此问题。
在迦太基,我尝试过这样的事情:
git https://userName@bitbucket.org/company/private-repo.git
我正在考虑分享一个ssh密钥,你有什么用?
答案 0 :(得分:1)
Cocoapods有几种选择。
对于您的广告连播,您可以指定git路径,例如pod 'PrivatePod', :git => 'https://userName@bitbucket.org/company/private-repo.git'
您可以创建私人规范回购,然后在source
部分之前的Podfile
中添加target
字符串:
source 'https://userName@bitbucket.org/company/private-spec-repo.git'
target ...
pod 'PrivatePod'
...
有关详细信息,请参阅该链接:https://guides.cocoapods.org/making/private-cocoapods.html