mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
d1cc130a5e
These are useful in organizations that enforce particular formats for commit messages, e.g., to specify bug IDs or test plans. Use of the template is not enforced; it is simply used as the initial content when the editor is invoked. Signed-off-by: Steven Grimm <koreth@midwinter.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
4 lines
88 B
Bash
Executable file
4 lines
88 B
Bash
Executable file
#!/bin/sh
|
|
echo "# this is a new comment" >> "$1"
|
|
echo "# and so is this" >> "$1"
|
|
exit 0
|