https://github.com/git/git
Raw File
Tip revision: 6b82d3eea625d83af067dc0ed57e361711cfb8b7 authored by Johannes Schindelin on 29 January 2021, 18:13:11 UTC
Git 2.17.6
Tip revision: 6b82d3e
add-content-and-comment
#!/bin/sh
echo "commit message" >> "$1"
echo "# comment" >> "$1"
exit 0

back to top