summaryrefslogtreecommitdiffstats
path: root/bin/git-commit-lazy
blob: a661f91a3611fc667d9b731be74d441adb41b265 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ -n "$(git config --get user.signingKey)" ]
then
	GIT_OPTIONS="-S"
fi

git add -A
git commit -a -s --allow-empty -m "Updating." ${GIT_OPTIONS}