more worktree improvements
Avoid more expensive code path when no core.worktree is configured. Don't change worktree when reading config if one is already set. This could happen if GIT_CORE_WORKTREE is set, and the repo also has core.worktree, and the config is reread. Now GIT_CORE_WORKTREE will prevail.
This commit is contained in:
parent
9d98144776
commit
ebbd24e5ed
2 changed files with 15 additions and 13 deletions
|
@ -78,19 +78,15 @@ store s repo = do
|
||||||
- based on the core.bare and core.worktree settings.
|
- based on the core.bare and core.worktree settings.
|
||||||
-}
|
-}
|
||||||
updateLocation :: Repo -> Repo
|
updateLocation :: Repo -> Repo
|
||||||
updateLocation r = go $ location r
|
updateLocation r@(Repo { location = LocalUnknown d })
|
||||||
|
| isBare r = newloc $ Local d Nothing
|
||||||
|
| otherwise = newloc $ Local (d </> ".git") (Just d)
|
||||||
where
|
where
|
||||||
go (LocalUnknown d)
|
newloc l = r { location = getworktree l }
|
||||||
| isbare = ret $ Local d Nothing
|
getworktree l = case workTree r of
|
||||||
| otherwise = ret $ Local (d </> ".git") (Just d)
|
Nothing -> l
|
||||||
go l@(Local {}) = ret l
|
wt -> l { worktree = wt }
|
||||||
go _ = r
|
updateLocation r = r
|
||||||
isbare = fromMaybe False $ isTrue =<< getMaybe "core.bare" r
|
|
||||||
ret l = r { location = l' }
|
|
||||||
where
|
|
||||||
l' = maybe l (setworktree l) $
|
|
||||||
getMaybe "core.worktree" r
|
|
||||||
setworktree l t = l { worktree = Just t }
|
|
||||||
|
|
||||||
{- Parses git config --list or git config --null --list output into a
|
{- Parses git config --list or git config --null --list output into a
|
||||||
- config map. -}
|
- config map. -}
|
||||||
|
@ -114,3 +110,9 @@ isTrue s
|
||||||
| otherwise = Nothing
|
| otherwise = Nothing
|
||||||
where
|
where
|
||||||
s' = map toLower s
|
s' = map toLower s
|
||||||
|
|
||||||
|
isBare :: Repo -> Bool
|
||||||
|
isBare r = fromMaybe False $ isTrue =<< getMaybe "core.bare" r
|
||||||
|
|
||||||
|
workTree :: Repo -> Maybe FilePath
|
||||||
|
workTree = getMaybe "core.worktree"
|
||||||
|
|
|
@ -31,7 +31,7 @@ get :: IO Repo
|
||||||
get = do
|
get = do
|
||||||
gd <- pathenv "GIT_DIR"
|
gd <- pathenv "GIT_DIR"
|
||||||
r <- configure gd =<< maybe fromCwd fromPath gd
|
r <- configure gd =<< maybe fromCwd fromPath gd
|
||||||
wt <- maybe (worktree $ location r) Just <$> pathenv "GIT_WORK_TREE"
|
wt <- maybe (Git.Config.workTree r) Just <$> pathenv "GIT_WORK_TREE"
|
||||||
case wt of
|
case wt of
|
||||||
Nothing -> return r
|
Nothing -> return r
|
||||||
Just d -> do
|
Just d -> do
|
||||||
|
|
Loading…
Add table
Reference in a new issue