change name of adjusted branches to eg adjusted/master(unlocked)

Using adjusted/unlocked/master made lots of git stuff dealing with "master"
complain that it was ambiguous. This new appoach is more like view branch
names, and shows the adjustment right there in the branch display even if
only the basename of the branch is shown.
This commit is contained in:
Joey Hess 2016-03-03 16:38:56 -04:00
parent cf24e9b892
commit 40509e20e5
Failed to extract signature

View file

@ -74,22 +74,24 @@ adjustedBranchPrefix :: String
adjustedBranchPrefix = "refs/heads/adjusted/" adjustedBranchPrefix = "refs/heads/adjusted/"
serialize :: Adjustment -> String serialize :: Adjustment -> String
serialize UnlockAdjustment = "unlock" serialize UnlockAdjustment = "unlocked"
deserialize :: String -> Maybe Adjustment deserialize :: String -> Maybe Adjustment
deserialize "unlock" = Just UnlockAdjustment deserialize "unlocked" = Just UnlockAdjustment
deserialize _ = Nothing deserialize _ = Nothing
originalToAdjusted :: OrigBranch -> Adjustment -> AdjBranch originalToAdjusted :: OrigBranch -> Adjustment -> AdjBranch
originalToAdjusted orig adj = Git.Ref.under base orig originalToAdjusted orig adj = Ref $
adjustedBranchPrefix ++ base ++ '(' : serialize adj ++ ")"
where where
base = adjustedBranchPrefix ++ serialize adj base = fromRef (Git.Ref.basename orig)
adjustedToOriginal :: AdjBranch -> Maybe (Adjustment, OrigBranch) adjustedToOriginal :: AdjBranch -> Maybe (Adjustment, OrigBranch)
adjustedToOriginal b adjustedToOriginal b
| adjustedBranchPrefix `isPrefixOf` bs = do | adjustedBranchPrefix `isPrefixOf` bs = do
adj <- deserialize (takeWhile (/= '/') (drop prefixlen bs)) let (base, as) = separate (== '(') (drop prefixlen bs)
Just (adj, Git.Ref.basename b) adj <- deserialize (takeWhile (/= ')') as)
Just (adj, Git.Ref.under "refs/heads" (Ref base))
| otherwise = Nothing | otherwise = Nothing
where where
bs = fromRef b bs = fromRef b
@ -217,7 +219,7 @@ updateAdjustedBranch tomerge (origbranch, adj) commitmode =
-} -}
propigateAdjustedCommits :: OrigBranch -> (Adjustment, AdjBranch) -> Annex () propigateAdjustedCommits :: OrigBranch -> (Adjustment, AdjBranch) -> Annex ()
propigateAdjustedCommits origbranch (adj, currbranch) = do propigateAdjustedCommits origbranch (adj, currbranch) = do
v <- inRepo $ Git.Ref.sha (Git.Ref.under "refs/heads/" origbranch) v <- inRepo $ Git.Ref.sha (Git.Ref.under "refs/heads" origbranch)
case v of case v of
Just origsha -> go origsha False =<< newcommits Just origsha -> go origsha False =<< newcommits
Nothing -> return () Nothing -> return ()