aboutsummaryrefslogtreecommitdiff
path: root/bin/jfc
blob: 36e11451189ca134863ab01f8a7a55d92f8d1e42 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
# Commit all changes to a Git repository with a stock message
# message.
cd -- "${1:-.}" || exit
grc || exit 0
git add --all || exit
git commit --message 'Committed by jfc(1)' --quiet || exit