i just not able to add file on github using git bash
error message :
fatal: unable to auto-detect email address (got 'M S@folder.(none)')
i tried this command:
git commit -m "first commit" filename
any help ?
i just not able to add file on github using git bash
error message :
fatal: unable to auto-detect email address (got 'M S@folder.(none)')
i tried this command:
git commit -m "first commit" filename
any help ?
When you installed git in your system first time, you have to set your user name and email. You can set your credentials using the below given command.
$ git config --global user.email "email_id"
$ git config --global user.name "user_name"