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.
|
|
|
|
-}
|
|
|
|
|
2013-05-10 21:29:59 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2012-05-18 22:20:53 +00:00
|
|
|
module Git.CurrentRepo where
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Git.Types
|
|
|
|
import Git.Construct
|
|
|
|
import qualified Git.Config
|
2013-08-04 17:54:09 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2013-05-11 22:23:41 +00:00
|
|
|
import Utility.Env
|
2013-08-04 17:54:09 +00:00
|
|
|
#endif
|
2012-05-18 22:20:53 +00:00
|
|
|
|
|
|
|
{- 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
|
2014-06-10 23:20:14 +00:00
|
|
|
curr <- getCurrentDirectory
|
|
|
|
unless (d `dirContains` curr) $
|
2013-05-11 23:14:30 +00:00
|
|
|
setCurrentDirectory d
|
2012-05-18 22:20:53 +00:00
|
|
|
return $ addworktree wt r
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2013-08-02 16:27:32 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2013-08-04 17:54:09 +00:00
|
|
|
pathenv s = do
|
2012-12-13 04:24:19 +00:00
|
|
|
v <- getEnv s
|
|
|
|
case v of
|
|
|
|
Just d -> do
|
2013-05-11 22:23:41 +00:00
|
|
|
void $ unsetEnv s
|
2012-12-13 04:24:19 +00:00
|
|
|
Just <$> absPath d
|
|
|
|
Nothing -> return Nothing
|
2013-05-11 20:03:00 +00:00
|
|
|
#else
|
2013-08-04 17:54:09 +00:00
|
|
|
pathenv _ = return Nothing
|
2013-05-11 20:03:00 +00:00
|
|
|
#endif
|
Additional GIT_DIR support bugfixes. May actually work now.
Two fixes. First, and most importantly, relax the isLinkToAnnex check
to only look for /annex/objects/, not [^|/].git/annex/objects. If
GIT_DIR is used with a detached work tree, the git directory is
not necessarily named .git.
There are important caveats with doing that at all, since git-annex will
make symlinks that point at GIT_DIR, which means that the relative path
between GIT_DIR and GIT_WORK_TREE needs to remain stable across all clones
of the repository.
----
The other fix is just fixing crazy and wrong code that, when GIT_DIR is
set, expects to still find a git repository in the path below the work
tree, and uses some of its configuration, and some of GIT_DIR. What was I
thinking, and why can't I seem to get this code right?
2013-02-23 16:32:09 +00:00
|
|
|
|
|
|
|
configure Nothing (Just r) = Git.Config.read r
|
|
|
|
configure (Just d) _ = do
|
2012-12-13 04:24:19 +00:00
|
|
|
absd <- absPath d
|
2014-06-10 23:20:14 +00:00
|
|
|
curr <- getCurrentDirectory
|
|
|
|
r <- newFrom $ Local { gitdir = absd, worktree = Just curr }
|
Additional GIT_DIR support bugfixes. May actually work now.
Two fixes. First, and most importantly, relax the isLinkToAnnex check
to only look for /annex/objects/, not [^|/].git/annex/objects. If
GIT_DIR is used with a detached work tree, the git directory is
not necessarily named .git.
There are important caveats with doing that at all, since git-annex will
make symlinks that point at GIT_DIR, which means that the relative path
between GIT_DIR and GIT_WORK_TREE needs to remain stable across all clones
of the repository.
----
The other fix is just fixing crazy and wrong code that, when GIT_DIR is
set, expects to still find a git repository in the path below the work
tree, and uses some of its configuration, and some of GIT_DIR. What was I
thinking, and why can't I seem to get this code right?
2013-02-23 16:32:09 +00:00
|
|
|
Git.Config.read r
|
|
|
|
configure Nothing Nothing = error "Not in a git repository."
|
|
|
|
|
2012-12-13 04:24:19 +00:00
|
|
|
addworktree w r = changelocation r $
|
|
|
|
Local { gitdir = gitdir (location r), worktree = w }
|
|
|
|
changelocation r l = r { location = l }
|