git:在提交模板中显示上次提交的消息

时间:2013-09-28 06:19:05

标签: git

git commit打开文本编辑器并显示有关要提交的更改的一些信息:

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#

#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#

我想扩展此模板以显示

  • N最后提交消息的第一行和/或
  • 上次提交的完整消息
当前分支的

。我怎么能这样做?

1 个答案:

答案 0 :(得分:10)

这将使用git hooks

  • 在项目根目录中,导航至.git/hooks/
  • 现在创建文件prepare-commit-msg
  • 添加以下代码:
#!/bin/sh
ORIG_MSG_FILE="$1"  # Grab the current template
TEMP=`mktemp /tmp/git-msg-XXXXX` # Create a temp file
trap "rm -f $TEMP" exit # Remove temp file on exit

MSG=`git log -1 --pretty=%s` # Grab the first line of the last commit message

(printf "\n\n# Last Commit: %s \n\n" "$MSG"; cat "$ORIG_MSG_FILE") > "$TEMP"  # print all to temp file
cat "$TEMP" > "$ORIG_MSG_FILE" # Move temp file to commit message
  • chmod +x prepare-commit_message

Enhancing git commit messages

借来的想法

您可以使用%b%B获取整个提交消息,但可能会遇到多行提交问题。可能会对%-b%-B感兴趣,或只是在Documentation中阅读更多内容(滚动到格式)