当我们使用 Xcode 去连接 Git 时,有时候会出现报错
Screen-Shot-2015-09-18-at-17.30.49.png
这是因为我们的本地终端没有和对应的 Git 地址连接上,
解决办法:
打开我们的终端输入以下两句:
xcrun git config --global user.email you@yourdomain.com
xcrun git config --global user.name "Your Name Here"
(可复制黏贴进终端命令行)
参考链接:http://pinkstone.co.uk/how-to-fix-couldnt-communicate-with-a-helper-application-in-xcode-7/
网友评论