Xcode8_Warning_Couldn’t communicate with a helper application.

警告

  • 升级Xcode8后提交代码,执行commit操作,出现以下警告


    Xcode8_Warning_Couldn’t communicate with a helper application._第1张图片
  • 升级Xcode8后shift + common + n 创建project,出现以下警告


    Xcode8_Warning_Couldn’t communicate with a helper application._第2张图片

分析原因

Couldn’t communicate with a helper application. 无法与辅助应用程序通信。mac里git需要重新配置。新建project,xcode提醒开发者不能执行commit操作

解决问题

打开终端,执行以下命令

git config --global user.name ###
git config --global user.email ##@##.com

git config -l // 查看

你可能感兴趣的:(Xcode8_Warning_Couldn’t communicate with a helper application.)