summaryrefslogtreecommitdiff
path: root/Git/Repair.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-11-18 13:24:55 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-11-18 13:24:55 -0400
commit0f99873417030ee9f5375fca12022879d8e5727f (patch)
tree9288f95245410818a2a7af28d7bdc6b7f9099383 /Git/Repair.hs
parente82e13dea5c3daf1053d4322b5579d01074712c1 (diff)
moving git-repair to its own package
Diffstat (limited to 'Git/Repair.hs')
-rw-r--r--Git/Repair.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Git/Repair.hs b/Git/Repair.hs
index 4265f8796..270b04182 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, [])