这里有提示啊 你按照这个做邮箱和用户名的配置,或者你直接百度这令个命令前面字符 也能搜到一些样例或者信息处理方案
你没有配置git账号密码
配置下你的git 账号密码
git config --global user.email "邮箱地址"
git config --global user.name "Name"
git commit --amend --author="{username} <{email}>"
配置
安装后,打开cmd ,自报家门
如下信息会在提交代码时要使用,记录在你的每次提交中。以后才知道哪次提交是谁做的。
git config --global user.name "Your Name" #用户名
git config --global user.email "email@example.com" #邮箱
查看信息
git config -l
git config --global user.name "你自己注册用户名"
git config --global user.email "你的gitee 账号绑定的邮箱"
git config -l #查看配置
git config --global user.email "邮箱地址"
git config --global user.name "注册用户名"
git config --global user.email "邮箱地址"
git config --global user.name "你的用户名"