1

When i create an xcode project getting following error, this error appears every time when i create a new project can any one help me to figure out the reason

Screenshot added

Jayprakash Dubey
  • 34,407
  • 18
  • 166
  • 174
Vaisakh
  • 2,899
  • 4
  • 25
  • 41

1 Answers1

4

Try to execute the following:

xcrun git config --global user.email you@domain.com
xcrun git config --global user.name "your name here"

It worked for me couple times already (with older MacOS/Xcode versions as well)

Dmitry
  • 2,586
  • 1
  • 17
  • 16
  • fixed my "Xcode couldn't communicate with a helper application" message when attempting to use git in Xcode 8.3.3 – Nelson Aug 04 '17 at 01:30