and getting message:
*** 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 set the identity only in this repository.
fatal: unable to auto-detect email address (got 'abc10@123.(none)')
The message you are getting tells you what you need to do. Your git config does not include your identity (name & email), so you need to run the listed commands to set those before you can commit. Git needs to be able to identify who is responsible for each commit.
Thanks Seth Foss.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.