0
Recently I created a project on my PC and I’m trying to commit pro github, but always appears this message.
*** Please tell me who you are.
Run
git config --global user.email "[email protected]"
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 'Tomas D'Alessandro@DESKTOP-01L85NP.(none)')
Do I need to post the same e-mail from github ? Whenever I open the app I need to add this information, I would not be able to automate ?
If you use
--global
you only need to do it once.– Woss