prepare-commit-msg.noexec
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # An example hook script to prepare the commit log message.
  4. # Called by git-commit with the name of the file that has the
  5. # commit message, followed by the description of the commit
  6. # message's source.  The hook's purpose is to edit the commit
  7. # message file.  If the hook fails with a non-zero status,
  8. # the commit is aborted.
  9. #
  10. # To enable this hook, make this file executable.
  11. # This hook includes three examples.  The first comments out the
  12. # "Conflicts:" part of a merge commit.
  13. #
  14. # The second includes the output of "git diff --name-status -r"
  15. # into the message, just before the "git status" output.  It is
  16. # commented because it doesn't cope with --amend or with squashed
  17. # commits.
  18. #
  19. # The third example adds a Signed-off-by line to the message, that can
  20. # still be edited.  This is rarely a good idea.
  21. case "$2,$3" in
  22.   merge,)
  23.     perl -i -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
  24. # ,|template,)
  25. #   perl -i -pe '
  26. #      print "n" . `git diff --cached --name-status -r`
  27. #  if /^#/ && $first++ == 0' "$1" ;;
  28.   *) ;;
  29. esac
  30. # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^(.*>).*$/Signed-off-by: 1/p')
  31. # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"