summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawkutSE8_3fFAETmO_E598zja4gKwYXbb8E <@web>2015-04-08 12:04:08 +0000
committerGravatar admin <admin@branchable.com>2015-04-08 12:04:08 +0000
commit10ddd10f11692decc2aed2e38c6da074c5ee277b (patch)
tree1bf7fdac6c0db9de5e18a25b14ebb802f40eb2f2
parentc8187bdf418b1499de408608a67d0ccaa9e48d48 (diff)
Added a comment
-rw-r--r--doc/forum/Newb_question_on_sneekernet_sync/comment_2_0a48dbcaedaa510e7135d094703118e5._comment28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/forum/Newb_question_on_sneekernet_sync/comment_2_0a48dbcaedaa510e7135d094703118e5._comment b/doc/forum/Newb_question_on_sneekernet_sync/comment_2_0a48dbcaedaa510e7135d094703118e5._comment
new file mode 100644
index 000000000..ee5b3e459
--- /dev/null
+++ b/doc/forum/Newb_question_on_sneekernet_sync/comment_2_0a48dbcaedaa510e7135d094703118e5._comment
@@ -0,0 +1,28 @@
+[[!comment format=mdwn
+ username="https://www.google.com/accounts/o8/id?id=AItOawkutSE8_3fFAETmO_E598zja4gKwYXbb8E"
+ nickname="Сергей"
+ subject="comment 2"
+ date="2015-04-08T12:04:08Z"
+ content="""
+Well, working with git annex, you should think of two things:
+
+1. location of annex information (git commit tree), I'll call it INFO
+2. location of files contents, I'll call it CONTENT
+
+So, for your sneekernet scenario these general steps are required:
+
+1. sync INFO between Laptop A and USB
+2. transfer required CONTENT from LAPTOP A to USB
+3. sync INFO between Laptop B and USB
+4. transfer required CONTENT from USB to Laptop B
+
+Let's describe your options on every step:
+
+1. issue `git annex sync` on Laptop A. Either from within USB or Laptop repo, I prefer Laptop becouse of automatic commit.
+2.
+* issue `git annex copy <files> --to=<usb-remote-name>` from within Laptop A repo
+ * issue `git annex get <files>` from within USB repo. This is not possible if you have bare repo on USB.
+3. issue `git annex sync` on Laptop B
+4. same as 2, but transfer to Laptop B
+
+"""]]