-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom commit message #25
Comments
If a custom command is the way to do this, I assume I'd adjust the below to something like: $commands[] = vsprintf('git commit -m "%s%s%s"', [
'[Spock] ',
$this->label(),
$this->user ? ' by ' . $this->user->username() : ''
]); |
You could try changing the git user name or email to be Spock in
|
Oh yeah, that could be better even, so it doesn't look like I'm the one committing everything! |
So the only downside to that is because the email is still mine, Github will show my username not |
The new Spock Update is awesome. @jasonvarga Can you do something like this:
|
So I know you can create custom commands to do things, but is there an easy way to add some text before/after the commit message so that when looking at the commit history we know it's from Spock?
So instead of
Submission saved
it could be[Spock] Submission saved
or some other easy way to see what's an automated change versus a human one?The text was updated successfully, but these errors were encountered: