I'm new to SmartGit. I can't commit through my repository, the message I'm receiving is:
Unable to auto-detect email address (got 'Arreane@Arreane-PC.(none)')
*** 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
I'm using a different PC, but if I commit at home it commits and pushes perfectly, I don't know if this was the cause of the problem.
I've searched around and others say to edit the .git/config
file, but I cannot find this file.
What am I missing?
git
is not recognized as as internal or external command however, I managed to find a solution I edited my .config file in c:/users/my_name/.gitconfig and added [user] name = my name email = [email protected] – Lownecked