diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-07 03:58:21 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-07 04:01:23 +0100 |
commit | c1ff403387064ff0027b9e762cc6f6a8fa20c8d9 (patch) | |
tree | 62b9a4cfccfc4fce42055ef94b9de41d1dfcc0a7 /app/Git.hs | |
parent | 3c6e62b75293b6625509ade3c278fc2d4d147c30 (diff) |
chore: move remaining `History.*` modules outside of `History`
Diffstat (limited to 'app/Git.hs')
-rw-r--r-- | app/Git.hs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,6 @@ module Git - ( withWorkingTree, + ( module Git.CommitHash, + withWorkingTree, getCommitHashes, getRootDir, ) @@ -13,6 +14,7 @@ import Data.Maybe (fromMaybe) import Data.Text qualified as T import Data.Text.Encoding qualified as T import Exception qualified as E +import Git.CommitHash import Process (proc, sh, sh_) import System.Directory (createDirectoryIfMissing) import System.FilePath (dropTrailingPathSeparator, takeDirectory) |