aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jd.schroeder@0c8632a8f2bffdd4b0de05a0a3660f32acdfeeca <jdschroeder@web>2016-08-20 16:17:08 +0000
committerGravatar admin <admin@branchable.com>2016-08-20 16:17:08 +0000
commit1158a2bb1a0f142930e99028d16ae41299910ca2 (patch)
tree248bec00d5af84cd9baa8f83c40612c47498ce9d
parent75e8e85c62f1fbc61d4c47dc949889dafdeea44c (diff)
Added a comment
-rw-r--r--doc/forum/how_to_disaster_recovery/comment_4_444579d0dac2ca14e6b1cbadcca5fcf3._comment24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/forum/how_to_disaster_recovery/comment_4_444579d0dac2ca14e6b1cbadcca5fcf3._comment b/doc/forum/how_to_disaster_recovery/comment_4_444579d0dac2ca14e6b1cbadcca5fcf3._comment
new file mode 100644
index 000000000..7ded573bf
--- /dev/null
+++ b/doc/forum/how_to_disaster_recovery/comment_4_444579d0dac2ca14e6b1cbadcca5fcf3._comment
@@ -0,0 +1,24 @@
+[[!comment format=mdwn
+ username="jd.schroeder@0c8632a8f2bffdd4b0de05a0a3660f32acdfeeca"
+ nickname="jd.schroeder"
+ subject="comment 4"
+ date="2016-08-20T16:17:07Z"
+ content="""
+Unfortunately, I'm not familiar with the errors that git fsck is giving you, so I should defer to someone who knows more. I don't want to tell you something that makes the problem worse :)
+
+If repairing doesn't work, one other thing you could try is cloning the repository that's giving you trouble, and using git annex to move the data into the new clone. This won't modify your original (defective) repository.
+
+ git clone /path/to/repository /path/to/newClone
+ cd /path/to/newClone
+ git annex get --all
+
+If you have files in your original repository that the assistant hasn't committed yet, they won't be in the new clone. So you should look around in /path/to/newClone to see if everything is there. You can run
+
+ cd /path/to/repository
+ git status
+
+to see any files that have not yet been committed in the defective repository, and copy them over manually.
+
+Good luck! Hope you get it working.
+
+"""]]