133

3 つのコミットを含む作業ツリーがあります。

➜ ~myproject git:(マスター)git log

commit a99cce8240495de29254b5df8745e41815db5a75
Author: My Name <my@mail.com>
Date:   Thu Aug 16 00:59:05 2012 +0200

    .gitignore edits

commit 5bccda674c7ca51e849741290530a0d48efd69e8
Author: My Name <my@mail.com>
Date:   Mon Aug 13 01:36:39 2012 +0200

    Create .gitignore file

commit 6707a66191c84ec6fbf148f8f1c3e8ac83453ae3
Author: My Name <my@mail.com>
Date:   Mon Aug 13 01:13:05 2012 +0200

    Initial commit (with a misleading message)

ここで、最初のコミットrewordのコミット メッセージを希望します(6707a66)

➜ ~myproject git:(マスター)git rebase -i 6707

(…vimに入る)

pick 5bccda6 Create .gitignore file
pick a99cce8 .gitignore edits

# Rebase 6707a66..a99cce8 onto 6707a66
#
# 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
#
# 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

rewordこの場合、問題のコミット メッセージを (git 用語で)修正したいと思います。

初期コミット (誤解を招くメッセージ付き)

…適切なものに。

当然のことながら、最初のコミットには明らかに親コミットがないため、上記の試みは成功しませんでした。(そして、あなたが望むものより前rebaseの次に古いコミットを参照する必要がありますよね?)reword

したがって、私の質問の要点は、他の方法でこれを達成できますか?

4

3 に答える 3

13

pcreux の要旨には、最初のコミットを言い換える良い方法があります。

# You can't use rebase -i here since it takes the parent commit as argument.
# You can do the following though:
git checkout FIRST_COMMIT_SHA && git commit --amend && git rebase HEAD master
于 2012-12-30T13:38:03.843 に答える
12

いつでも使用できますgit filter-branch --msg-filter

git filter-branch --msg-filter \
  'test $GIT_COMMIT = '$(git rev-list --reverse master |head -n1)' &&
echo "Nice message" || cat' master
于 2012-08-16T13:13:34.040 に答える