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
  • 35,723
  • 18
  • 170
  • 177
Vaisakh
  • 2,919
  • 4
  • 26
  • 44

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,766
  • 1
  • 18
  • 17
  • 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