Show diff when writing commit messages during an interactive rebase

前端 未结 3 1154
礼貌的吻别
礼貌的吻别 2021-02-19 21:54

When doing a regular git commit, git commit --verbose shows the diff in the text editor when writing the commit message.

Suppose I am doing an interactive r

3条回答
  •  再見小時候
    2021-02-19 22:18

    To show the diff:

    git -c commit.verbose=true rebase --continue
    

    To make all commits verbose without having to specify -c commit.verbose=true every time, add this to ~/.gitconfig:

    [commit]
        verbose = true
    

    Reference: man git-config.

提交回复
热议问题