美文网首页
Xcode8_Warning_Couldn’t communic

Xcode8_Warning_Couldn’t communic

作者: dpruin | 来源:发表于2016-10-26 11:31 被阅读38次

    警告

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


    • 升级Xcode8后shift + common + n 创建project,出现以下警告


    分析原因

    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 communic

          本文链接:https://www.haomeiwen.com/subject/tnpduttx.html