在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.
fatal: unable to auto-detect email address (got 'GWB@GWB-PC.(none)')
是因为在创建git文件夹的时候信息不完善导致的
解决方法是当出现这个上述提示后 接着补充
在命令行中执行
git config --global user.email "你的邮箱"
git config --global user.name "你的名字"
(注意 “ 前面是有空格的)
输入完后再接着执行git commit 即可成功!
正确方式为:
- 生成本地仓库
依次敲
- git init
- git config user.name "someone"
- git config user.email "someone@someplace.com"
- git add *
- git commit -m "init msg"
创建远程仓库
github上完成,点击创建后会生成一个后缀为.git关联的代码(复制)将本地仓库推送到远程仓库
- 关联
.git代码粘贴一下 - 推送
git push origin master