svn commit: r368740 - head/tools/tools/git/hooks
Ed Maste <[email protected]> Thu, 17 Dec 2020 20:31:45 +0000 (UTC)
| Newsgroups | gmane.os.freebsd.devel.cvs |
|---|---|
| Message-ID | <202012172031.0BHKVjUX002745__21367.1684077539$1608237113$gmane$org@repo.freebsd.org> |
Author: emaste
Date: Thu Dec 17 20:31:45 2020
New Revision: 368740
URL: https://svnweb.freebsd.org/changeset/base/368740
Log:
Describe the commit message template our git hook script produces
Reported by: rpokala
Modified:
head/tools/tools/git/hooks/prepare-commit-msg
Modified: head/tools/tools/git/hooks/prepare-commit-msg
==============================================================================
--- head/tools/tools/git/hooks/prepare-commit-msg Thu Dec 17 20:31:17 2020 (r368739)
+++ head/tools/tools/git/hooks/prepare-commit-msg Thu Dec 17 20:31:45 2020 (r368740)
@@ -16,8 +16,17 @@ merge)
esac
outfile=$(mktemp /tmp/freebsd-git-commit.XXXXXXXX)
-cat >$outfile <<EOF
+# Create a commit message template from three parts:
+#
+# 1. The beginning of the git-provided template (up to the first comment-only
+# line) which explains commented lines and such.
+# 2. Our template.
+# 3. The remainder of the git-provided template (from the first comment-only
+# line to the end of the file) which lists files staged for commit, files
+# not staged, and untracked files.
+
+cat >$outfile <<EOF
$(awk '1;/^#$/{exit}' $1)
# Uncomment and complete these metadata fields, as appropriate:
#
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"