在github外面创建私人cocoapods repo

时间:2014-03-10 11:26:15

标签: ios xcode cocoapods

我们正在开发使用开源库和私有库的项目,这些库无法上市。公开我的意思是,他们不能在我们公司的服务器之外托管。我们想为所有这些使用CocoaPods。虽然使用开源库非常简单,但我的问题是,如果我可以在私有服务器上使用私有存储库来托管我们的私有库?我找到了这个链接http://guides.cocoapods.org/making/private-cocoapods.html,没有信息天气它必须是github或它可以是任何服务器,但我也在寻找其他页面上的解决方案,每个人都说我必须回购github上。这是真的吗?

4 个答案:

答案 0 :(得分:4)

它不一定是GitHub上的回购。有关详细信息,请参阅private pods指南。

答案 1 :(得分:2)

只需添加新的本地存储库并根据需要配置遥控器:

mkdir ~/.cocoapods/repos/private
cd ~/.cocoapods/repos/private
git init
git commit -m Initial
git remote add origin https://myremote.org
git push -u origin master

答案 2 :(得分:1)

是的,你可以使用你想要的任何git repo。

创建私人可可豆荚时,我总是遵循本教程。 https://coderwall.com/p/7ucsva

答案 3 :(得分:1)

它很简单 写下以下几行

mkdir ~/<path x>
cd <path x> 
git init
pod repo add <name of your repo> ~/<path x>