diff options
-rw-r--r-- | Command/Fsck.hs | 1 | ||||
-rw-r--r-- | doc/git-annex.mdwn | 7 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs index 766154a4a..6cf444967 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -67,7 +67,6 @@ seek :: CommandSeek seek ps = do from <- getOptionField fsckFromOption Remote.byNameWithUUID i <- getIncremental - liftIO $ print i withKeyOptions (\k -> startKey i k =<< getNumCopies) (withFilesInGit $ whenAnnexed $ start from i) diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn index 7b1ac928b..0912e0b2a 100644 --- a/doc/git-annex.mdwn +++ b/doc/git-annex.mdwn @@ -503,9 +503,10 @@ subdirectories). To avoid expensive checksum calculations (and expensive transfers when fscking a remote), specify `--fast`. - To start a new incremental fsck, specify `--incremental`. Then - the next time you fsck, you can specify `--more` to skip over - files that have already been checked, and continue where it left off. + To start a new incremental fsck, use the `--incremental` option. Then + the next time you fsck, you can instead use the `--more` option + to skip over files that have already been checked, and continue + where it left off. The `--incremental-schedule` option makes a new incremental fsck be started a configurable time after the last incremental fsck was started. |