summaryrefslogtreecommitdiff
path: root/Git/RefLog.hs
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-18 13:06:58 -0400
committerJoey Hess <joey@kitenet.net>2013-11-18 13:06:58 -0400
commit471aa27bf0a0e4c698303acb7fdf9cea6a75634b (patch)
tree8934b0b32c315922f00cb82d772df885301a2582 /Git/RefLog.hs
downloadgit-repair-471aa27bf0a0e4c698303acb7fdf9cea6a75634b.tar.gz
copied from git-annex
Diffstat (limited to 'Git/RefLog.hs')
-rw-r--r--Git/RefLog.hs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Git/RefLog.hs b/Git/RefLog.hs
new file mode 100644
index 0000000..3f41e8e
--- /dev/null
+++ b/Git/RefLog.hs
@@ -0,0 +1,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)
+ ]