Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode and Git Source Control : “The working copy XXXXX failed to commit files”

Tags:

git

xcode

iphone

I have been using Xcode to develop and publish apps for almost a year. I have been using git as the local repository and bitbucket as the remote repository. Everything has been going fine until this morning. I am now getting an error 'The working copy "xxx" failed to commit files. Please tell me who you are.' Xcode then suggests that I run git config and give it an email address and name. I have no idea why it suddenly needs to know who I am. I don't know who it thought I was before and I don't want it to become more confused than it is now. I have not done anything with command prompts on the Mac so I am not sure where it expects me to enter this information. I vaguely recalled seeing suggestions on using the command prompt to set up bitbucket a year ago but they looked confusing so I did everything from the xcode GUI. Is this something new in xcode 4.6? What do I do?

like image 568
JSWilson Avatar asked Feb 04 '13 20:02

JSWilson


2 Answers

I was getting this also. at first I could restart the mac and everything was working fine. Eventually though the problem came back with a vengeance even with a restart it would not let me commit so I had to do the command line loving. one caveat being that you have to type xcrun before any git commands in terminal when using vanilla git installed with Xcode.

so type:

xcrun git config --global user.email [email protected] xcrun git config --global user.name "your name" 

after doing this everything was fine and dandy.

like image 148
Kenneth Vittetoe Avatar answered Sep 21 '22 00:09

Kenneth Vittetoe


I faced the same issue after installing Xcode 7. The solution provided by Kent Latimer worked for me. Config without --global in workspace directory from terminal.

xcrun git config user.name "Toto" xcrun git config user.email [email protected] 
like image 26
TonioGA Avatar answered Sep 20 '22 00:09

TonioGA