The working copy '' failed to commit files - Couldnt communicate with helper application

后端 未结 6 1603
挽巷
挽巷 2020-12-29 19:19

I\'ve just updated to Xcode 7 general release and ive tried committing files. Its failing however, and im getting the following message;

Ive seen this quest

6条回答
  •  庸人自扰
    2020-12-29 20:13

    Turns out the “helper application” is in fact Git. For some reason Xcode 7 is eager to associate you (the committer) with a name and an email address.

    To fix it, on the command line, type the following:

    xcrun git config --global user.email you@yourdomain.com
    xcrun git config --global user.name "Your Name Here"
    

提交回复
热议问题