mathieudutour / medium-to-own-blog

Switch from Medium to your own blog in a few minutes
MIT License
3.03k stars 107 forks source link

Why project is not uploading #76

Closed ayush-srivasta closed 4 years ago

ayush-srivasta commented 4 years ago

Successfully created project 'QuizApp' on GitHub, but initial commit failed: *** 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. unable to auto-detect email address (got 'Ayush Srivastav@LAPTOP-CS29LAIK.(none)')

mathieudutour commented 4 years ago

as stated in the error, you need to setup git:

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