Ответ @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
, остальное просто останется (на данный момент вы не редактируете сообщение о фиксации), e. g:
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 и сохраняйте&quit, например:
<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
.
Для получения дополнительной информации, пожалуйста, прочтите док .