Mercurial > lasercutter
view graster/hacklab-engraver/.git/hooks/prepare-commit-msg.sample @ 21:e72220627685 tip
0.002 inch discrepancy with target. going to test anyway
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 30 Aug 2010 01:19:21 -0400 |
parents | f952052e37b7 |
children |
line wrap: on
line source
1 #!/bin/sh2 #3 # An example hook script to prepare the commit log message.4 # Called by git-commit with the name of the file that has the5 # commit message, followed by the description of the commit6 # message's source. The hook's purpose is to edit the commit7 # message file. If the hook fails with a non-zero status,8 # the commit is aborted.9 #10 # To enable this hook, rename this file to "prepare-commit-msg".12 # This hook includes three examples. The first comments out the13 # "Conflicts:" part of a merge commit.14 #15 # The second includes the output of "git diff --name-status -r"16 # into the message, just before the "git status" output. It is17 # commented because it doesn't cope with --amend or with squashed18 # commits.19 #20 # The third example adds a Signed-off-by line to the message, that can21 # still be edited. This is rarely a good idea.23 case "$2,$3" in24 merge,)25 perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;27 # ,|template,)28 # perl -i.bak -pe '29 # print "\n" . `git diff --cached --name-status -r`30 # if /^#/ && $first++ == 0' "$1" ;;32 *) ;;33 esac35 # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')36 # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"