Your configuration specifies to merge with the ref

cocoaPod创建私有库,把所有组件放到一个私有库时,再在主项目引用这个私有库,git pull时出现以下问题。

报错信息如下:

Your configuration specifies to merge with the ref 'refs/heads/feature/reBuildNJProj'

from the remote, but no such ref was fetched.


上网搜了一下问题,有的说是可以修改git的配置文件,增加一个master即可,发现并不是这个原因导致的。

Your configuration specifies to merge with the ref_第1张图片

运行git pull发现还是报同样的错误。


正确的解决办法:

找到git的配置文件,

Your configuration specifies to merge with the ref_第2张图片

打开.git隐藏文件夹,查看./git目录里的config文件,文件位置如上图所示,发现下面红框的地址被篡改了。改回项目的正确地址即可。红框的地址和你项目所在的地址比较一下,看看是否一样即可。

Your configuration specifies to merge with the ref_第3张图片


再运行git pull就正常了。


你可能感兴趣的:(Your,configuration,s,no,such,ref,was,fetc,git,pull报错,cocoaPod创建私有库报错,ios,bug整理)