summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-22 20:36:24 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-22 20:36:24 -0400
commit43d17478040ab1271b833e72f8483e183d2d04de (patch)
tree6a88b5c677446b7a2234f889a086a7bb52457047
parentc1dc4079419cff94cca72441d5e67a866110ec7e (diff)
parent686b12ae303a5ddc69b51beb467113f0e8e6d1b5 (diff)
Merge remote-tracking branch 'branchable/master'
-rw-r--r--doc/bugs/softlink_atime.mdwn2
-rw-r--r--doc/walkthrough/moving_file_content_between_repositories/comment_1_4c30ade91fc7113a95960aa3bd1d5427._comment19
2 files changed, 20 insertions, 1 deletions
diff --git a/doc/bugs/softlink_atime.mdwn b/doc/bugs/softlink_atime.mdwn
index 69d6f6600..c62610be0 100644
--- a/doc/bugs/softlink_atime.mdwn
+++ b/doc/bugs/softlink_atime.mdwn
@@ -41,8 +41,8 @@ Optionally, editing the meta-data should change the times in all annexes.
>>>>>>> This is even better:
#!/bin/sh
+ if ! type metastore >/dev/null; then echo "$0: metastore is not installed; exiting"; exit 1; fi
git annex pre-commit .
- which metastore || echo "$0: metastore is not installed; exiting"; exit 99
metastore --save
git add .metadata
diff --git a/doc/walkthrough/moving_file_content_between_repositories/comment_1_4c30ade91fc7113a95960aa3bd1d5427._comment b/doc/walkthrough/moving_file_content_between_repositories/comment_1_4c30ade91fc7113a95960aa3bd1d5427._comment
new file mode 100644
index 000000000..b3dc8fe7a
--- /dev/null
+++ b/doc/walkthrough/moving_file_content_between_repositories/comment_1_4c30ade91fc7113a95960aa3bd1d5427._comment
@@ -0,0 +1,19 @@
+[[!comment format=mdwn
+ username="https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U"
+ nickname="Richard"
+ subject="comment 1"
+ date="2011-03-22T23:41:51Z"
+ content="""
+I may be missing something obvious, but when I copy to a remote repository, the object files are created, but no softlinks are created. When I pull everything from the remote, it pulls only files the local repo knows about already.
+
+ A
+ / \
+ B C
+
+Moving from B to A creates no symlinks in A but the object files are moved to A. Copying back from A to B restores the object files in B and keeps them in A.
+
+Copying from A to an empty C does not create any object files nor symlinks. Copying from C to A creates no symlinks in A but the object files are copied to A.
+
+-- RichiH
+
+"""]]