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 3a128de0c1
commit c094c7880d
No known key found for this signature in database
GPG Key ID: CC9DA35FC5450B76
1 changed files with 1 additions and 1 deletions

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
)