2012-05-18 22:20:53 +00:00
|
|
|
{- The current git repository.
|
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.CurrentRepo where
|
|
|
|
|
|
|
|
import System.Posix.Directory (changeWorkingDirectory)
|
|
|
|
import System.Posix.Env (getEnv, unsetEnv)
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Git.Types
|
|
|
|
import Git.Construct
|
|
|
|
import qualified Git.Config
|
|
|
|
|
|
|
|
{- Gets the current git repository.
|
|
|
|
-
|
|
|
|
- Honors GIT_DIR and GIT_WORK_TREE.
|
|
|
|
- Both environment variables are unset, to avoid confusing other git
|
|
|
|
- commands that also look at them. Instead, the Git module passes
|
|
|
|
- --work-tree and --git-dir to git commands it runs.
|
|
|
|
-
|
|
|
|
- When GIT_WORK_TREE or core.worktree are set, changes the working
|
|
|
|
- directory if necessary to ensure it is within the repository's work
|
|
|
|
- tree. While not needed for git commands, this is useful for anything
|
|
|
|
- else that looks for files in the worktree.
|
|
|
|
-}
|
|
|
|
get :: IO Repo
|
|
|
|
get = do
|
2012-05-18 22:30:50 +00:00
|
|
|
gd <- pathenv "GIT_DIR"
|
2012-10-17 18:28:05 +00:00
|
|
|
r <- configure gd =<< fromCwd
|
2012-10-16 04:02:14 +00:00
|
|
|
wt <- maybe (worktree $ location r) Just <$> pathenv "GIT_WORK_TREE"
|
2012-05-18 22:20:53 +00:00
|
|
|
case wt of
|
|
|
|
Nothing -> return r
|
|
|
|
Just d -> do
|
2012-05-19 14:37:28 +00:00
|
|
|
cwd <- getCurrentDirectory
|
|
|
|
unless (d `dirContains` cwd) $
|
|
|
|
changeWorkingDirectory d
|
2012-05-18 22:20:53 +00:00
|
|
|
return $ addworktree wt r
|
|
|
|
where
|
2012-05-18 22:30:50 +00:00
|
|
|
pathenv s = do
|
2012-05-18 22:20:53 +00:00
|
|
|
v <- getEnv s
|
2012-05-18 22:30:50 +00:00
|
|
|
case v of
|
2012-10-16 03:12:50 +00:00
|
|
|
Just d -> do
|
|
|
|
unsetEnv s
|
|
|
|
Just <$> absPath d
|
2012-05-18 22:30:50 +00:00
|
|
|
Nothing -> return Nothing
|
2012-05-18 22:20:53 +00:00
|
|
|
configure Nothing r = Git.Config.read r
|
|
|
|
configure (Just d) r = do
|
|
|
|
r' <- Git.Config.read r
|
|
|
|
-- Let GIT_DIR override the default gitdir.
|
2012-10-16 20:23:50 +00:00
|
|
|
absd <- absPath d
|
|
|
|
return $ changelocation r' $ Local
|
|
|
|
{ gitdir = absd
|
|
|
|
, worktree = worktree (location r')
|
|
|
|
}
|
2012-05-18 22:20:53 +00:00
|
|
|
addworktree w r = changelocation r $
|
|
|
|
Local { gitdir = gitdir (location r), worktree = w }
|
|
|
|
changelocation r l = r { location = l }
|