summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-18 13:25:24 -0400
committerJoey Hess <joey@kitenet.net>2013-11-18 13:25:24 -0400
commit06d2ee5cd256b34ee9e4d0b02a215ea386f8b3dd (patch)
treebb32326429be2f5532948ce4ee55aa96e3b8bb30
parent9f313a1862262ca319926b8cb903da0c7b9d62e8 (diff)
downloadgit-repair-06d2ee5cd256b34ee9e4d0b02a215ea386f8b3dd.tar.gz
update
-rw-r--r--Git/Repair.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Git/Repair.hs b/Git/Repair.hs
index 4265f87..270b041 100644
--- a/Git/Repair.hs
+++ b/Git/Repair.hs
@@ -525,10 +525,10 @@ runRepairOf fsckresult forced referencerepo g = do
unsuccessfulfinish stillmissing = do
if repoIsLocalBare g
then do
- putStrLn "If you have a clone of this bare repository, you should add it as a remote of this repository, and re-run git-recover-repository."
- putStrLn "If there are no clones of this repository, you can instead run git-recover-repository with the --force parameter to force recovery to a possibly usable state."
+ putStrLn "If you have a clone of this bare repository, you should add it as a remote of this repository, and retry."
+ putStrLn "If there are no clones of this repository, you can instead retry with the --force parameter to force recovery to a possibly usable state."
return (False, stillmissing, [])
else needforce stillmissing
needforce stillmissing = do
- putStrLn "To force a recovery to a usable state, run this command again with the --force parameter."
+ putStrLn "To force a recovery to a usable state, retry with the --force parameter."
return (False, stillmissing, [])