Ответ @Mureinik хорош, но не понятен новичку.
Первый метод:
- Если вы хотите отредактировать только последнее сообщение о коммите, вам нужно только
git commit --amend
:
<your existing commit mesage foo bar>
# Please enter the commit message fir your changes. Lines starting
# with # will be ignored, and an empty message aborts the commit.
#
# Date: Sat Aug 24 17:56:16 2019 +0800
#
# On branch is up to date with 'origin/master'.
#
# changes to be committed:
# modified: foo.py
#
- Как видите, передайте сообщение сверху без префикса команды, например
pick
, это уже страница редактирования, и вы можете напрямую отредактировать верхнее сообщение и сохранить и выйти , например:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Тогда делай
git push -u origin master --force
или <how you push normally> --force
. Ключ здесь --force
.
Второй метод:
Вы можете увидеть коммит хеша git log
или извлечь из репозитория URL, например, в моем случае это881129d771219cfa29e6f6c2205851a2994a8835
Тогда вы можете сделать git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
или git rebase -i HEAD^
(если последний)
Вы бы увидели:
pick <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
- Но если вы видите, что
noop
вы, вероятно, печатаете неправильно, например, если вы делаете то, git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
что пропущено ^
в конце, вам лучше выйти из редактора без сохранения и выяснить причину:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Если
noop
проблем нет , просто измените слово pick
на reword
, остальное просто остается (вы не редактируете сообщение коммита в данный момент), например:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Save & quit увидит страницу редактирования, аналогичную методу №1:
<your existing commit mesage foo bar>
# Please enter the commit message fir your changes. Lines starting
# with # will be ignored, and an empty message aborts the commit.
#
# Date: Sat Aug 24 17:56:16 2019 +0800
#
# interactive rebase in progress; onto b057371
# Last command done (1 command done):
# reword d996ffb <existing commit message foo bar>
# No commands remaining.
# You are currently editing a commit while rebasing branch 'master' on 'b057371'.
#
# changes to be committed:
# modified: foo.py
#
- Отредактируйте сообщение сверху, как в методе № 1, и сохраните и выйдите, например:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Опять же, как метод № 1, делать
git push -u origin master --force
или <how you push normally> --force
. Ключ здесь --force
.
Для получения дополнительной информации, пожалуйста, прочитайте документацию .