Git commit --amend 修改提交信息操作
程序员文章站
2022-06-22 19:07:24
amend翻译成中文:修改1.修改还未push的提交//修改最近一次提交git commit --amend//进入注释页面,进行修改//修改后保存退出2.修改已经push的提交//修改最近一次提交g...
amend
翻译成中文:修改
1.修改还未push的提交
//修改最近一次提交
git commit --amend
//进入注释页面,进行修改
//修改后保存退出
2.修改已经push的提交
//修改最近一次提交
git commit --amend
//进入注释页面,进行修改
//修改后保存退出
//强制推送
git push --force-with-lease origin master
补充知识:git 使用amend补上遗漏文件
适用场景:上一次提交遗漏了一些文件,需要补交,但不想多一次commit
git commit -m 'initial commit'
git add forgotten_file
git commit --amend --no-edit
该操作会修改上一次提交的内容,但不会要求你编辑提交信息,仍保持上一次commit的message
以上这篇git commit --amend 修改提交信息操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇: 一文搞懂python异常处理、模块与包
推荐阅读
-
Github:07---git之(git的回溯(git reset)、合并冲突、修改提交信息、压缩历史(git rebase))
-
Git 修改已提交 commit 的作者信息
-
git 修改所有提交的作者信息
-
Git修改commit的作者信息
-
批量修改git commit的作者信息
-
git修改历史提交信息(包含作者信息)
-
Git commit --amend 修改提交信息操作
-
git push撤销、git commit 撤销、git add撤销、修改git提交信息
-
Github:07---git之(git的回溯(git reset)、合并冲突、修改提交信息、压缩历史(git rebase))
-
Git commit --amend 修改提交信息操作