Automatically enable v6 mode when initializing in a clone from a repo that has an adjusted branch checked out.

The clone also has the adjusted branch checked out, so it needs to be
initialized to a version that supports that.
This commit is contained in:
Joey Hess 2016-06-02 15:34:30 -04:00
parent 02a20288ef
commit 72f0d3d384
Failed to extract signature
3 changed files with 13 additions and 5 deletions

View file

@ -542,13 +542,17 @@ diffTreeToTreeItem dti = TreeItem
{- Cloning a repository that has an adjusted branch checked out will
- result in the clone having the same adjusted branch checked out -- but
- the origbranch won't exist in the clone, nor will the basis.
- Create them. -}
checkAdjustedClone :: Annex ()
- Create them.
-
- The repository may also need to be upgraded to a new version, if the
- current version is too old to support adjusted branches. Returns True
- when this is the case. -}
checkAdjustedClone :: Annex Bool
checkAdjustedClone = go =<< inRepo Git.Branch.current
where
go Nothing = return ()
go Nothing = return False
go (Just currbranch) = case adjustedToOriginal currbranch of
Nothing -> return ()
Nothing -> return False
Just (adj, origbranch) -> do
let remotebranch = Git.Ref.underBase "refs/remotes/origin" origbranch
let basis@(BasisBranch bb) = basisBranch (originalToAdjusted origbranch adj)
@ -556,6 +560,7 @@ checkAdjustedClone = go =<< inRepo Git.Branch.current
setBasisBranch basis remotebranch
unlessM (inRepo $ Git.Ref.exists origbranch) $
inRepo $ Git.Branch.update' origbranch remotebranch
not <$> versionSupportsUnlockedPointers
-- git 2.2.0 needed for GIT_COMMON_DIR which is needed
-- by updateAdjustedBranch to use withWorkTreeRelated.

View file

@ -105,7 +105,8 @@ initialize' mversion = do
, unlessM isBare
switchHEADBack
)
checkAdjustedClone
whenM checkAdjustedClone $
void $ upgrade True
createInodeSentinalFile False
uninitialize :: Annex ()

View file

@ -11,6 +11,8 @@ git-annex (6.20160528) UNRELEASED; urgency=medium
* Pass -S to git commit-tree when commit.gpgsign is set and when
making a non-automatic commit, in order to preserve current behavior
when used with git 1.9, which has stopped doing this itself.
* Automatically enable v6 mode when initializing in a clone from a repo
that has an adjusted branch checked out.
-- Joey Hess <id@joeyh.name> Fri, 27 May 2016 13:12:48 -0400