Add configuration for delete hook

This commit is contained in:
Matthias Beyer 2016-09-17 17:46:52 +02:00
parent 47646d608b
commit 721238ce14

View file

@ -66,20 +66,6 @@ ensure_branch = "master"
# Try to checkout the ensure_branch if it isn't checked out # Try to checkout the ensure_branch if it isn't checked out
try_checkout_ensure_branch = true try_checkout_ensure_branch = true
[store.hooks.stdhook_git_delete]
aspect = "vcs"
# Fail if the repository cannot be opened. If this is set to `false`, the error
# will be printed, but will not abort the store operation. `true` will print the
# error and abort the store action.
abort_on_repo_init_failure = true
# Ensure to be on this branche before doing anything.
ensure_branch = "master"
# Try to checkout the ensure_branch if it isn't checked out
try_checkout_ensure_branch = true
[store.hooks.stdhook_git_update] [store.hooks.stdhook_git_update]
aspect = "vcs" aspect = "vcs"
@ -108,3 +94,31 @@ interactive_editor = false
# Commit message if the commit is not interactive # Commit message if the commit is not interactive
message = "Update" message = "Update"
[store.hooks.stdhook_git_delete]
aspect = "vcs"
# Fail if the repository cannot be opened. If this is set to `false`, the error
# will be printed, but will not abort the store operation. `true` will print the
# error and abort the store action.
abort_on_repo_init_failure = true
# Ensure to be on this branche before doing anything.
ensure_branch = "master"
# Try to checkout the ensure_branch if it isn't checked out
try_checkout_ensure_branch = true
# Commit configuration
[store.hooks.stdhook_git_delete.commit]
# Whether to do the commit interactively
interactive = false
# Set to true to use the $EDITOR for the commit, to false to do on commandline
# When committing without editor, only a single line is allowed as commit
# message
interactive_editor = false
# Commit message if the commit is not interactive
message = "Deleted"