From 717caac52ec80a62591f54bf582cc8d407344276 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 26 Dec 2011 13:08:52 -0400 Subject: [PATCH] hook renamed --- Git/{PostFetch.hs => TweakFetch.hs} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename Git/{PostFetch.hs => TweakFetch.hs} (91%) diff --git a/Git/PostFetch.hs b/Git/TweakFetch.hs similarity index 91% rename from Git/PostFetch.hs rename to Git/TweakFetch.hs index 965aefce9c..8e527829df 100644 --- a/Git/PostFetch.hs +++ b/Git/TweakFetch.hs @@ -1,11 +1,11 @@ -{- git post-fetch hook support +{- git tweak-fetch hook support - - Copyright 2011 Joey Hess - - Licensed under the GNU GPL version 3 or higher. -} -module Git.PostFetch (runHook, runHookUnsafe, FetchedRef(..)) where +module Git.TweakFetch (runHook, runHookUnsafe, FetchedRef(..)) where import Common import Git @@ -19,7 +19,7 @@ data FetchedRef = FetchedRef } deriving (Show) -{- Each line fed to the post-fetch hook should represent a ref that is +{- Each line fed to the tweak-fetch hook should represent a ref that is - being updated. It's important that the hook always outputs every line - that is fed into it (possibly modified), otherwise incoming refs will - not be stored. So to avoid breaking if the format changes, unparsable