summaryrefslogtreecommitdiff
path: root/Command/Lock.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Lock.hs')
-rw-r--r--Command/Lock.hs12
1 files changed, 5 insertions, 7 deletions
diff --git a/Command/Lock.hs b/Command/Lock.hs
index 1ae488227..e21792143 100644
--- a/Command/Lock.hs
+++ b/Command/Lock.hs
@@ -12,8 +12,7 @@ import System.Directory
import Command
import Messages
-import qualified Annex
-import qualified GitRepo as Git
+import qualified AnnexQueue
import Utility
command :: [Command]
@@ -31,9 +30,8 @@ start (file, _) = do
perform :: FilePath -> CommandPerform
perform file = do
liftIO $ removeFile file
- g <- Annex.gitRepo
- -- first reset the file to drop any changes checked into the index
- liftIO $ Git.run g "reset" [Params "-q --", File file]
- -- checkout the symlink
- liftIO $ Git.run g "checkout" [Param "--", File file]
+ -- Checkout from HEAD to get rid of any changes that might be
+ -- staged in the index, and get back to the previous symlink to
+ -- the content.
+ AnnexQueue.add "checkout" [Param "HEAD", Param "--"] file
next $ return True -- no cleanup needed