diff options
author | Joey Hess <joey@kitenet.net> | 2014-03-04 15:00:19 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-03-04 15:00:19 -0400 |
commit | 05a1f05d157d1b18a8dadd7a6b08991da8e7cdc4 (patch) | |
tree | 75e8e61ea0771e7a7e2a25cb1876005f0623e1be /Git | |
parent | 647d74a3e8463623e73de840eed2aca22a04842a (diff) |
improved direct mode dir/file conflicted merge resultion, using tree grafting
Diffstat (limited to 'Git')
-rw-r--r-- | Git/UpdateIndex.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Git/UpdateIndex.hs b/Git/UpdateIndex.hs index 6d1ff2548..4ecd77363 100644 --- a/Git/UpdateIndex.hs +++ b/Git/UpdateIndex.hs @@ -15,6 +15,7 @@ module Git.UpdateIndex ( startUpdateIndex, stopUpdateIndex, lsTree, + lsSubTree, updateIndexLine, stageFile, unstageFile, @@ -74,6 +75,13 @@ lsTree (Ref x) repo streamer = do void $ cleanup where params = map Param ["ls-tree", "-z", "-r", "--full-tree", x] +lsSubTree :: Ref -> FilePath -> Repo -> Streamer +lsSubTree (Ref x) p repo streamer = do + (s, cleanup) <- pipeNullSplit params repo + mapM_ streamer s + void $ cleanup + where + params = map Param ["ls-tree", "-z", "-r", "--full-tree", x, p] {- Generates a line suitable to be fed into update-index, to add - a given file with a given sha. -} |