Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The working copy '<Project Name>' failed to commit files - Couldnt communicate with helper application

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

enter image description here

Ive seen this question but the secondary response is different in the OP question: Xcode and Git Source Control : “The working copy XXXXX failed to commit files”

Whats the 'helper application' that it is looking for and whats the solution? Migrating to Xcode 7 and iOS9 is becoming a headache :( I commit my files by going to 'Source Control' -> 'Commit'

like image 674
DevC Avatar asked Sep 18 '15 10:09

DevC


1 Answers

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 [email protected] xcrun git config --global user.name "Your Name Here" 
like image 168
Rukshan Avatar answered Sep 19 '22 02:09

Rukshan