`

Git修改提交的用户名和Email(转)

git 
阅读更多

转:http://blog.163.com/seven_7_one/blog/static/162606412201110233150292/

对已经提交的代码进行名称与邮箱的修改。

 

Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:

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

If the identity used for this commit is wrong, you can fix it with:

    git commit --amend --author='Your Name <you@example.com>'

分享到:
评论

相关推荐

    git-modify-author.sh

    修改Git Commit提交记录的用户名Name和邮箱Email。用于修改已经提交记录的用户名及邮箱。

    git培训教程 .docx

    Git 是一个开源的分布式版本控制系统,能够记录每位开发者的修改、 deletion 和更新,通过 Git,可以追踪项目的演进历史,并且可以与他人协作开发。 Git 的安装和配置 1. 下载 Git 安装包:从官方网站 ...

    git快速入门.pptx

    在使用 Git 之前,需要进行初始化操作,包括设置用户名和电子邮件地址。 git config --global user.name "myname" git config --global user.email "mymail" git config -l // 查看 config 信息 2. Checkout 远程...

    COMMANDS:最好的git命令

    最好的git命令 :star:记住进行干净的单用途提交编写有意义的提交消息尽早提交,经常提交不要更改已发布的历史记录(小组项目) 不要提交生成的文件在[]之间我们必须更改或添加git配置配置用户名git config --global ...

    InitGitClient:Git客户端连接远程仓库配置信息

    初始化客户端Git客户端连接远程仓库配置信息#设置用户名git config --global user.name '名称'#设置邮箱git config --global user.email '邮箱号'#查看设置git config --list常用命令:git status 查看相关文件的...

    如果发现你的github contributions 面板没有变成绿色,怎么办?!

    但是这种修改方式只能对未来的commit生效,过去的commit的用户名邮箱信息是不会改变的,而对已提交的commit修改的方法如下。 修改已提交的最后一次commit 修改最近一次 git commit --amend --author=userName 注意...

    git基础

    设置本地值以将您记录为提交和其他更改的作者。 用户名: git config --global user.name "Your Name" 电子邮件: git config --global user.email "name@example.com" 本地存储库入门 储存库初始化 在存储库中...

    git-from-ui-to-terminal

    在开始建立用户名和电子邮件地址之前,这一点很重要,因为此信息将显示在“提交”中。 在Git中设置您的用户名 $ git config --global user.name " Test name " 设置您的电子邮件地址 $ git config --global user....

    如何连接Atom和Github:此存储库实质上包括简单的步骤,以正确的顺序连接Atom和GitHub

    键入git config --global user.email“ type_your_email_here”按Enter并键入:git config-全局用户名“ type_your_name_here”,然后按Enter。 (通过这种方式,它识别出是您。) 在Github.com上创建

    AmazonEchoJS:AmazonEchoJS是一个ruby可执行文件,用于监视Amazon echo的语音命令

    安装将此行添加到您的应用程序的Gemfile中: gem 'AmazonEchoJS' 然后执行: $ bundle或将其自己安装为: $ gem install AmazonEchoJS用法要运行echo_monitor,您必须提供用户名,密码和回调URL echo_monitor email@...

Global site tag (gtag.js) - Google Analytics