2011-06-29 15:55:16 +00:00
|
|
|
{- git ls-files interface
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-06-30 17:16:57 +00:00
|
|
|
module Git.LsFiles (
|
2011-06-29 15:55:16 +00:00
|
|
|
inRepo,
|
|
|
|
notInRepo,
|
|
|
|
staged,
|
|
|
|
stagedNotDeleted,
|
|
|
|
changedUnstaged,
|
|
|
|
typeChanged,
|
|
|
|
typeChangedStaged,
|
|
|
|
) where
|
|
|
|
|
2011-06-30 17:16:57 +00:00
|
|
|
import Git
|
2011-08-22 20:14:12 +00:00
|
|
|
import Utility.SafeCommand
|
2011-06-29 15:55:16 +00:00
|
|
|
|
|
|
|
{- Scans for files that are checked into git at the specified locations. -}
|
|
|
|
inRepo :: Repo -> [FilePath] -> IO [FilePath]
|
2011-09-30 03:43:42 +00:00
|
|
|
inRepo repo l = pipeNullSplit repo $ Params "ls-files --cached -z --" : map File l
|
2011-06-29 15:55:16 +00:00
|
|
|
|
2011-09-25 18:37:13 +00:00
|
|
|
{- Scans for files at the specified locations that are not checked into git. -}
|
2011-06-29 15:55:16 +00:00
|
|
|
notInRepo :: Repo -> Bool -> [FilePath] -> IO [FilePath]
|
2011-09-30 03:43:42 +00:00
|
|
|
notInRepo repo include_ignored l = pipeNullSplit repo $
|
2011-09-25 18:37:13 +00:00
|
|
|
[Params "ls-files --others"] ++ exclude ++
|
|
|
|
[Params "-z --"] ++ map File l
|
2011-06-29 15:55:16 +00:00
|
|
|
where
|
2011-09-25 18:37:13 +00:00
|
|
|
exclude
|
|
|
|
| include_ignored = []
|
|
|
|
| otherwise = [Param "--exclude-standard"]
|
2011-06-29 15:55:16 +00:00
|
|
|
|
|
|
|
{- Returns a list of all files that are staged for commit. -}
|
|
|
|
staged :: Repo -> [FilePath] -> IO [FilePath]
|
|
|
|
staged repo l = staged' repo l []
|
|
|
|
|
|
|
|
{- Returns a list of the files, staged for commit, that are being added,
|
|
|
|
- moved, or changed (but not deleted), from the specified locations. -}
|
|
|
|
stagedNotDeleted :: Repo -> [FilePath] -> IO [FilePath]
|
|
|
|
stagedNotDeleted repo l = staged' repo l [Param "--diff-filter=ACMRT"]
|
|
|
|
|
|
|
|
staged' :: Repo -> [FilePath] -> [CommandParam] -> IO [FilePath]
|
|
|
|
staged' repo l middle = pipeNullSplit repo $ start ++ middle ++ end
|
|
|
|
where
|
|
|
|
start = [Params "diff --cached --name-only -z"]
|
2011-07-15 07:12:05 +00:00
|
|
|
end = Param "--" : map File l
|
2011-06-29 15:55:16 +00:00
|
|
|
|
|
|
|
{- Returns a list of files that have unstaged changes. -}
|
|
|
|
changedUnstaged :: Repo -> [FilePath] -> IO [FilePath]
|
|
|
|
changedUnstaged repo l = pipeNullSplit repo $
|
2011-07-15 07:12:05 +00:00
|
|
|
Params "diff --name-only -z --" : map File l
|
2011-06-29 15:55:16 +00:00
|
|
|
|
|
|
|
{- Returns a list of the files in the specified locations that are staged
|
|
|
|
- for commit, and whose type has changed. -}
|
|
|
|
typeChangedStaged :: Repo -> [FilePath] -> IO [FilePath]
|
|
|
|
typeChangedStaged repo l = typeChanged' repo l [Param "--cached"]
|
|
|
|
|
|
|
|
{- Returns a list of the files in the specified locations whose type has
|
|
|
|
- changed. Files only staged for commit will not be included. -}
|
|
|
|
typeChanged :: Repo -> [FilePath] -> IO [FilePath]
|
|
|
|
typeChanged repo l = typeChanged' repo l []
|
|
|
|
|
|
|
|
typeChanged' :: Repo -> [FilePath] -> [CommandParam] -> IO [FilePath]
|
|
|
|
typeChanged' repo l middle = pipeNullSplit repo $ start ++ middle ++ end
|
|
|
|
where
|
|
|
|
start = [Params "diff --name-only --diff-filter=T -z"]
|
2011-07-15 07:12:05 +00:00
|
|
|
end = Param "--" : map File l
|