Skip to content
Snippets Groups Projects
Commit 3e3f3aa3 authored by Edward Z. Yang's avatar Edward Z. Yang
Browse files

Fix #3676, don't use --branch when checking out a branch with Git.


Signed-off-by: default avatarEdward Z. Yang <ezyang@cs.stanford.edu>
parent d6617ce7
No related branches found
No related tags found
No related merge requests found
......@@ -314,20 +314,23 @@ branchDarcs = Brancher "darcs" $ \repo -> do
branchGit :: Brancher
branchGit = Brancher "git" $ \repo -> do
src <- PD.repoLocation repo
let branchArgs = case PD.repoBranch repo of
Just b -> ["--branch", b]
Nothing -> []
let postClone dst = case PD.repoTag repo of
Just t -> do
cwd <- getCurrentDirectory
setCurrentDirectory dst
finally
(rawSystem "git" (["checkout", t] ++ branchArgs))
(rawSystem "git" (["checkout", t] ++
case PD.repoBranch repo of
Just b -> [b]
Nothing -> []))
(setCurrentDirectory cwd)
Nothing -> return ExitSuccess
return $ BranchCmd $ \verbosity dst -> do
notice verbosity ("git: clone " ++ show src)
code <- rawSystem "git" (["clone", src, dst] ++ branchArgs)
code <- rawSystem "git" (["clone", src, dst] ++
case PD.repoBranch repo of
Nothing -> []
Just b -> ["--branch", b])
case code of
ExitFailure _ -> return code
ExitSuccess -> postClone dst
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment