Commit CB changes as "Auto"

Helps when using git's annotate function
This commit is contained in:
Zach Brown 2016-09-10 21:31:32 -05:00
parent b0a15ca1ea
commit 89b26bb90d

View file

@ -46,7 +46,7 @@ git add src >/dev/null 2>&1
# We don't need to sign an automated commit
# All it does is make you input your key passphrase mid-patch
git config commit.gpgsign false
git commit -m "CraftBukkit $ $(date)" >/dev/null 2>&1
git commit -m "CraftBukkit $ $(date)" --author="Auto <auto@mated.null>" >/dev/null 2>&1
enableCommitSigningIfNeeded
git checkout -f HEAD^ >/dev/null 2>&1
)