世界那么好,机会那么多

这里除了干货,什么都没有

关于git上传文件的一个小问题

*** 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.

 

解决:

  在.git文件夹执行

  

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

 

或全局配置

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

 

posted @ 2018-10-27 11:01  面向对象爱好者社区  阅读(371)  评论(0编辑  收藏  举报