1

为了适应 iOS 10,我必须在 cocoaPods 中更新这 3 部分,所以我已经将 cocoaPods 更新到了最新版本。APP 工作正常,但是当我使用时git push,终端要求我输入 github 的用户名和密码,但是,终端显示:

fatal: Authentication failed for 'https://github.com/CocoaPods/Specs.git/'.

我确定我输入的用户名和密码是正确的。

在我在这里问这个问题之前,我曾在谷歌上寻求帮助并找到解决方案:Pull first,then push.

但尴尬的是我已经提交了我的代码。也就是说,如果我使用git pull我将失去我今天的所有工作,这太可怕了,所以我想知道是否有更好的方法来解决它。

当我git remote -v进入终端时,出现了一些有趣的东西:

origin https://github.com/CocoaPods/Specs.git (fetch) origin https://github.com/CocoaPods/Specs.git (push)

我对 cocoaPods 如何更改我的项目的远程 url 感到惊讶?

4

1 回答 1

2

最后我用git remote set-url origin xxx解决了这个问题。

于 2016-09-29T09:52:20.197 回答