summaryrefslogtreecommitdiffstats
path: root/imagrc.toml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-06-04 16:31:28 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-06-06 11:12:37 +0200
commit91dce6858f7bcbddc64b0349f5bb1f5aff56eb20 (patch)
tree6f80a5875e722e2d3206dd74f587ee39a21649f7 /imagrc.toml
parent204ef2470381967c2cd9044c623f83f2eaff7588 (diff)
Remove hook config from example config file
Diffstat (limited to 'imagrc.toml')
-rw-r--r--imagrc.toml145
1 files changed, 0 insertions, 145 deletions
diff --git a/imagrc.toml b/imagrc.toml
index 37a940df..5c5598b5 100644
--- a/imagrc.toml
+++ b/imagrc.toml
@@ -33,148 +33,3 @@ readline_prompt = ">> "
# lives implicitely
implicit-create = false
-# Hooks which get executed right before the Store is closed.
-# They get the store path as StoreId passed, so they can alter the complete
-# store, so these hooks should be chosen carefully.
-store-unload-hook-aspects = [ "debug", "vcs" ]
-
-pre-create-hook-aspects = [ "debug", "vcs" ]
-post-create-hook-aspects = [ "debug", "vcs" ]
-
-pre-move-hook-aspects = [ "debug" ]
-post-move-hook-aspects = [ "debug" ]
-
-pre-retrieve-hook-aspects = [ "debug", "vcs" ]
-post-retrieve-hook-aspects = [ "debug", "vcs" ]
-
-pre-update-hook-aspects = [ "debug", "vcs" ]
-post-update-hook-aspects = [ "debug", "vcs" ]
-
-pre-delete-hook-aspects = [ "debug", "vcs" ]
-post-delete-hook-aspects = [ "debug", "vcs" ]
-
-[store.aspects.debug]
-parallel = false
-mutable_hooks = true
-
-[store.aspects.vcs]
-parallel = false
-mutable_hooks = false
-
-[store.hooks.stdhook_debug]
-aspect = "debug"
-
-[store.hooks.stdhook_git_update]
-aspect = "vcs"
-
-# set to false to disable
-enabled = true
-
-# 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 = "refs/heads/master"
-
-# Try to checkout the ensure_branch if it isn't checked out
-try_checkout_ensure_branch = true
-
-# Commit configuration
-[store.hooks.stdhook_git_update.commit]
-
-# Enable committing here. If not enabled, the "stdhook_git_storeunload" hook
-# will commit all changes in one commit when the store is closed.
-enabled = false
-
-# 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 = "Update"
-
-[store.hooks.stdhook_git_delete]
-aspect = "vcs"
-
-# set to false to disable
-enabled = true
-
-# 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 = "refs/heads/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]
-
-# Enable committing here. If not enabled, the "stdhook_git_storeunload" hook
-# will commit all changes in one commit when the store is closed.
-enabled = false
-
-# 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"
-
-[store.hooks.stdhook_git_storeunload]
-aspect = "vcs"
-
-# set to false to disable
-enabled = true
-
-# 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 = "refs/heads/master"
-
-# Try to checkout the ensure_branch if it isn't checked out
-try_checkout_ensure_branch = true
-
-# Commit configuration
-[store.hooks.stdhook_git_storeunload.commit]
-
-# Enable on-unload-committing, causing the store-unload hook to commit the
-# changes to the store. This has no effect if the changes were already committed
-# by the other git hooks.
-enabled = true
-
-# Do a git-add on all files that are not in the index yet, before committing.
-# This must be turned on, as we do not support adding with "Update" hooks and
-# only committing with the "Drop" hook, yet.
-# So, effectively, disabling this will disable committing.
-#
-# If not set: false
-add_wt_changes = true
-
-# 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 = "Commit on drop"
-