sh Git - 修改具体提交

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Git - 修改具体提交相关的知识,希望对你有一定的参考价值。

# Use the commit hash (first eight characters) 
git rebase --interactive '<commit-hash>^'

# In the default editor, modify pick to edit in the line whose commit you want to modify
# Make your changes and then commit them with the same message you had before
git commit --all --amend --no-edit

# Finish the rebasing process
git rebase --continue

以上是关于sh Git - 修改具体提交的主要内容,如果未能解决你的问题,请参考以下文章

sh 修改Git提交日期

sh git修改了之前的提交

git的提交突出--git rebase之abortcontinueskip

Git 修改已提交 commit 的信息

git 提交 作者 可以修改吗

怎么修改git提交过的内容