What are the necessary settings for "git configuration"?
git-config, xcode
Solution
It's telling you literally, exactly what to do. Open a Terminal session, and run this, replacing 'you@example.com' with your email address:
git config --global user.email "you@example.com"
This sets your email address for git, it uses this to identify who you are in commits.
Then, run this, replacing 'Your Name' with your name:
git config --global user.name "Your Name"
This sets your name for git commit messages, it uses this to give a more readable name to commits.
If this stuff is not clear to you, you really owe it to yourself to learn git: http://try.github.io
Problem
when I create a project in Xcode 4.3 it keeps on displaying message saying below.I did not get what that means and how to do the necessary settings. Any help will be greatly appreciated. Thanks Baha ``` Please tell me who you are Run git config --global user.email "you@example.com" git.config --global user.name"Your Name" to set your account's default identity. Omit --global to say the identity only in this repository. fatal:unable to auto-detect email address (got 'Home@s-imac-3.(none)")` ```