006cf7976f
Done using a mode witness, which ensures it's fixed everywhere. Fixing catFileKey was a bear, because git cat-file does not provide a nice way to query for the mode of a file and there is no other efficient way to do it. Oh, for libgit2.. Note that I am looking at tree objects from HEAD, rather than the index. Because I cat-file cannot show a tree object for the index. So this fix is technically incomplete. The only cases where it matters are: 1. A new large file has been directly staged in git, but not committed. 2. A file that was committed to HEAD as a symlink has been staged directly in the index. This could be fixed a lot better using libgit2.
54 lines
1.5 KiB
Haskell
54 lines
1.5 KiB
Haskell
{- git-annex command
|
|
-
|
|
- Copyright 2010, 2013 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
module Command.PreCommit where
|
|
|
|
import Common.Annex
|
|
import Command
|
|
import qualified Command.Add
|
|
import qualified Command.Fix
|
|
import qualified Git.DiffTree
|
|
import qualified Git.Ref
|
|
import Annex.CatFile
|
|
import Annex.Content.Direct
|
|
import Git.Sha
|
|
|
|
def :: [Command]
|
|
def = [command "pre-commit" paramPaths seek SectionPlumbing
|
|
"run by git pre-commit hook"]
|
|
|
|
seek :: [CommandSeek]
|
|
seek =
|
|
-- fix symlinks to files being committed
|
|
[ whenNotDirect $ withFilesToBeCommitted $ whenAnnexed $ Command.Fix.start
|
|
-- inject unlocked files into the annex
|
|
, whenNotDirect $ withFilesUnlockedToBeCommitted startIndirect
|
|
-- update direct mode mappings for committed files
|
|
, whenDirect $ withWords startDirect
|
|
]
|
|
|
|
startIndirect :: FilePath -> CommandStart
|
|
startIndirect file = next $ do
|
|
unlessM (doCommand $ Command.Add.start file) $
|
|
error $ "failed to add " ++ file ++ "; canceling commit"
|
|
next $ return True
|
|
|
|
startDirect :: [String] -> CommandStart
|
|
startDirect _ = next $ do
|
|
(diffs, clean) <- inRepo $ Git.DiffTree.diffIndex Git.Ref.headRef
|
|
forM_ diffs go
|
|
next $ liftIO clean
|
|
where
|
|
go diff = do
|
|
withkey (Git.DiffTree.srcsha diff) (Git.DiffTree.srcmode diff) removeAssociatedFile
|
|
withkey (Git.DiffTree.dstsha diff) (Git.DiffTree.dstmode diff) addAssociatedFile
|
|
where
|
|
withkey sha mode a = when (sha /= nullSha) $ do
|
|
k <- catKey sha mode
|
|
case k of
|
|
Nothing -> noop
|
|
Just key -> void $ a key (Git.DiffTree.file diff)
|