summaryrefslogtreecommitdiff
path: root/Git/RefLog.hs
blob: 3f41e8eaaa29a85a2aa79578678dd3cd0016465d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{- git reflog interface
 -
 - Copyright 2013 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL 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 = mapMaybe extractSha . lines <$$> pipeReadStrict
	[ Param "log"
	, Param "-g"
	, Param "--format=%H"
	, Param (show b)
	]