summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar CandyAngel <CandyAngel@web>2015-06-06 14:57:35 +0000
committerGravatar admin <admin@branchable.com>2015-06-06 14:57:35 +0000
commit39b095cc25bbe072102bd6ad04cb2a9fe146b696 (patch)
treedd726bb310f83ae052e51e9e45e2bc5a8e701310 /doc
parent13504b85714246b5f23f1249ac5a49a79c1acec1 (diff)
Added a comment
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/Speed_up_remote_transfers/comment_1_bd97e1c47338322c5232cea7cdbc26fc._comment18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/forum/Speed_up_remote_transfers/comment_1_bd97e1c47338322c5232cea7cdbc26fc._comment b/doc/forum/Speed_up_remote_transfers/comment_1_bd97e1c47338322c5232cea7cdbc26fc._comment
new file mode 100644
index 000000000..f4e9194dd
--- /dev/null
+++ b/doc/forum/Speed_up_remote_transfers/comment_1_bd97e1c47338322c5232cea7cdbc26fc._comment
@@ -0,0 +1,18 @@
+[[!comment format=mdwn
+ username="CandyAngel"
+ subject="comment 1"
+ date="2015-06-06T14:57:35Z"
+ content="""
+I did this using a couple of tools (off the top of my head):
+
+git annex find path/ --format '${key}\n' > /tmp/keyslist (outputs a list of keys)
+find .git/annex/objects -type f | grep -wFf /tmp/keyslist > /tmp/filelist (outputs a list of files)
+
+Then I use 'resync -avhP --files-from=/tmp/filelist . othermachine:some/tmp/dir' to transfer the files to the other machine.
+
+Then I 'git annex import some/tmp/dir' to inject the content, then just delete the additional symlinks (and reset the index).
+
+This speeds things up a bit. Even more speed can be had using tar/netcat.
+
+Hope this points you in the right direction.
+"""]]