最佳答案
这是我第一次开发 GitHub 项目,而且我对 CocoPods 也不太在行,所以请耐心等待。
Basically, I forked a project on GitHub using the following in my Podfile
:
pod 'REActivityViewController', '~> 1.6.7', :git => 'https://github.com/<username>/REActivityViewController.git'
I then made some changes to the fork, and of course when I did a pod install
to install another pod it reinstalled the original REActivityViewController
and erased my changes.
我意识到我需要在另一个 pod install
之前将更改推到我的 fork 上,但是考虑到这是由 CocoaPods 安装的回购,我如何知道正在安装的是 fork 呢?我查看了安装在 Pods
文件夹下的 REActivityViewController
文件夹,没有任何 git 文件。
我是否需要在项目之外的分支上工作,然后使用 CocoPods 来安装更改?这工作流程太繁琐了。
或者我需要对子模块做些什么吗?