首页 > 其他 > 详细

git commit 新修改的内容 添加到上次提交中 减少提交的日志

时间:2019-08-17 16:31:13      阅读:136      评论:0      收藏:0      [点我收藏+]

有时候提交过一次记录只有,又修改了一次,仅仅是改动一些较少的内容,可以使用git commit --amend. 添加到上次提交过程中;

    --amend               amend previous commit
git commit --amend  # 会通过 core.editor 指定的编辑器进行编辑
git commit --amend --no-edit   # 不会进入编辑器,直接进行提交

如果你之前没有配置 core.editor 选项的时候,会出现:

error: There was a problem with the editor vi. 
Please supply the message using either -m or -F option.

这个时候,你通过 git config 命令,配置全局变量,指定特定的编辑器就解决报错了;之后再进行git config --amend 命令来进行编辑;

git config --global core.editor /usr/bin/vim

保持更新,转载请注明出处。更多关于linux和分布式系统相关的知识,请关注 cnblogs.com/xuyaowen 

git commit 新修改的内容 添加到上次提交中 减少提交的日志

原文:https://www.cnblogs.com/xuyaowen/p/git-commit-amend.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!