git error “Please tell me who you are.” and Heroku

前端 未结 1 1602
[愿得一人]
[愿得一人] 2021-01-28 12:09

I was working in branch master, and committing to Git repository. Everything worked fine. I connected new app to this repository on Heroku.

I was committin

相关标签:
1条回答
  • 2021-01-28 12:32

    It seems that your email, and name parameters in global config are empty. Probably you have executed something like this, that has dropped the values:

    git config --global user.name ""
    git config --global user.email ""
    

    Just fill them with commands again:

    git config --global user.name "Your Name"
    git config --global user.email "your@email.com"
    

    Where your@email.com is your github email.

    NOTE: You can push out of hand to heroku, bypassing the github, since heroku also have git repo itself.

    0 讨论(0)
提交回复
热议问题