X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/04836991be4626c60964f77a935d425e41782c9f..d921399d97e499b69ed5c9ed98cef69e61704791:/doc/hooks?ds=sidebyside

diff --git a/doc/hooks b/doc/hooks
index 1a93fda..282ee86 100644
--- a/doc/hooks
+++ b/doc/hooks
@@ -1,8 +1,25 @@
 Available hooks are:
+
+* pre-clone
+* post-clone
+* post-clone-retired
+	Use this if you need to operate on different git repositories after cloning.
+	This hook can be useful if your configuration needs some remote
+	repositories, but you do not want to include it into your vcsh
+	repository. For instance, if you use vim plugins manager (vundle,
+	NeoBundle), zsh configuration frameworks (oh-my-zsh, prezto), etc.
 * pre-command
 * post-command
 * pre-enter
 * post-enter
+* pre-init
+* post-init
+* pre-merge
+	Use this hook to detect and handle merge conflicts before vcsh's native code
+	finds and errors on them. This is useful for allowing clones on top of existing
+	files.
+* post-merge
+	Use this hook to finish handling any merge conflicts found in the pre-merge hook.
 * pre-pull
 * post-pull
 * pre-push
@@ -11,3 +28,6 @@ Available hooks are:
 * post-run
 * pre-upgrade
 * post-upgrade
+
+If you write any interesting or useful hooks, please send them upstream
+so they can be included in an examples section.