6 lines
73 B
Plaintext
6 lines
73 B
Plaintext
|
#!/bin/sh
|
||
|
echo "commit message" >> "$1"
|
||
|
echo "# comment" >> "$1"
|
||
|
exit 0
|
||
|
|