https://github.com/git/git
Raw File
Tip revision: 3a19048ce498d519bd564c9fd222161dca789321 authored by Johannes Schindelin on 11 March 2023, 19:29:33 UTC
Git 2.33.8
Tip revision: 3a19048
add-content-and-comment
#!/bin/sh
echo "commit message" >> "$1"
echo "# comment" >> "$1"
exit 0

back to top