When enabling Git Repository Source Control for a new project on Xcode 7, it shows:
However, even after I setup user.name and user.email in terminal:
git config --global user.name "John"
git config --global user.email "john@example.com"
I checked and see from Terminal using
git config --global -l
I also checked local config in the project folder using:
git config --local -l
user.name and user.email were not set locally.
But I still cannot commit and the same message from Xcode pop up. Any ideas what's going wrong? Please help!