git-annex/Command/Unannex.hs

61 lines
1.6 KiB
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Unannex where
2011-10-05 20:02:51 +00:00
import Common.Annex
import Command
import qualified Annex
2011-10-15 20:21:08 +00:00
import Logs.Location
2011-10-04 04:40:47 +00:00
import Annex.Content
2011-12-14 19:56:11 +00:00
import qualified Git.Command
import qualified Git.LsFiles as LsFiles
def :: [Command]
def = [command "unannex" paramPaths seek "undo accidential add command"]
seek :: [CommandSeek]
seek = [withFilesInGit $ whenAnnexed start]
2010-11-11 22:54:52 +00:00
2011-12-31 08:11:39 +00:00
start :: FilePath -> (Key, Backend) -> CommandStart
start file (key, _) = stopUnless (inAnnex key) $ do
showStart "unannex" file
next $ perform file key
perform :: FilePath -> Key -> CommandPerform
2011-10-27 23:10:10 +00:00
perform file key = next $ cleanup file key
cleanup :: FilePath -> Key -> CommandCleanup
cleanup file key = do
liftIO $ removeFile file
-- git rm deletes empty directory without --cached
2011-12-14 19:56:11 +00:00
inRepo $ Git.Command.run "rm" [Params "--cached --quiet --", File file]
-- If the file was already committed, it is now staged for removal.
-- Commit that removal now, to avoid later confusing the
-- pre-commit hook if this file is later added back to
-- git as a normal, non-annexed file.
whenM (not . null <$> inRepo (LsFiles.staged [file])) $ do
2011-12-22 18:50:20 +00:00
showOutput
2011-12-14 19:56:11 +00:00
inRepo $ Git.Command.run "commit" [
2011-12-22 18:50:20 +00:00
Param "-q",
Params "-m", Param "content removed from git annex",
Param "--", File file]
ifM (Annex.getState Annex.fast)
( do
-- fast mode: hard link to content in annex
src <- inRepo $ gitAnnexLocation key
liftIO $ createLink src file
thawContent file
, do
fromAnnex key file
logStatus key InfoMissing
)
return True