2011-12-14 19:30:14 +00:00
|
|
|
{- git index file stuff
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.Index where
|
|
|
|
|
2013-11-30 18:29:11 +00:00
|
|
|
import Common
|
|
|
|
import Git
|
2013-05-11 22:23:41 +00:00
|
|
|
import Utility.Env
|
2011-12-14 19:30:14 +00:00
|
|
|
|
|
|
|
{- Forces git to use the specified index file.
|
|
|
|
-
|
|
|
|
- Returns an action that will reset back to the default
|
2012-08-25 00:50:39 +00:00
|
|
|
- index file.
|
|
|
|
-
|
|
|
|
- Warning: Not thread safe.
|
|
|
|
-}
|
2011-12-14 19:30:14 +00:00
|
|
|
override :: FilePath -> IO (IO ())
|
|
|
|
override index = do
|
|
|
|
res <- getEnv var
|
2013-11-30 18:29:11 +00:00
|
|
|
void $ setEnv var index True
|
|
|
|
return $ void $ reset res
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
var = "GIT_INDEX_FILE"
|
|
|
|
reset (Just v) = setEnv var v True
|
|
|
|
reset _ = unsetEnv var
|
2013-11-30 18:29:11 +00:00
|
|
|
|
|
|
|
indexFile :: Repo -> FilePath
|
|
|
|
indexFile r = localGitDir r </> "index"
|
2014-06-09 22:01:30 +00:00
|
|
|
|
|
|
|
{- Git locks the index by creating this file. -}
|
|
|
|
indexFileLock :: Repo -> FilePath
|
|
|
|
indexFileLock r = indexFile r ++ ".lock"
|