File: RefLog.hs

package info (click to toggle)
git-repair 1.20200102-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 640 kB
  • sloc: haskell: 5,469; makefile: 35; sh: 9
file content (30 lines) | stat: -rw-r--r-- 671 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{- git reflog interface
 -
 - Copyright 2013 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU AGPL version 3 or higher.
 -}

module Git.RefLog where

import Common
import Git
import Git.Command
import Git.Sha

{- Gets the reflog for a given branch. -}
get :: Branch -> Repo -> IO [Sha]
get b = getMulti [b]

{- Gets reflogs for multiple branches. -}
getMulti :: [Branch] -> Repo -> IO [Sha]
getMulti bs = get' (map (Param . fromRef) bs)

get' :: [CommandParam] -> Repo -> IO [Sha]
get' ps = mapMaybe extractSha . lines . decodeBS <$$> pipeReadStrict ps'
  where
	ps' = catMaybes
		[ Just $ Param "log"
		, Just $ Param "-g"
		, Just $ Param "--format=%H"
		] ++ ps