summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-05-05 12:42:34 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-05-05 12:42:34 -0400
commitd4bda01831e86c45dee39ff5ad515f978f4f4d66 (patch)
tree4f3a65ac023ba5c17a20c9169d7f6b38c4d0bb1f
parentf5c474f9f4719b11f375f20bd61a26ea378e7d8d (diff)
parent682dfe9c6439e8d5401ecb48aca70b1948d4fdf2 (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r--doc/forum/git_annex_windows_and_rsync.mdwn26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/forum/git_annex_windows_and_rsync.mdwn b/doc/forum/git_annex_windows_and_rsync.mdwn
new file mode 100644
index 000000000..c45cd8d2d
--- /dev/null
+++ b/doc/forum/git_annex_windows_and_rsync.mdwn
@@ -0,0 +1,26 @@
+Issue with getting files from a Linux ssh/rsync repo.
+
+I have a centralized repo on a small linux VM that I synchronize my workstations with, most are linux machines but one is a windows one. I installed msysgit and git-annex for windows, and then run the following:
+
+
+ git clone ssh://user@IP.ADDRESS/home/user/annex annex
+ cd annex
+ git annex init 'windows'
+ git annex copy --from origin
+
+
+So basically I am just trying to get a copy of the central repo onto this windows machine for starters and get:
+
+
+ rsync: connection unexpectedly closed (0 bytes received so far) [sender]
+ rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]
+ rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
+ rsync error: error in rsync protoco rsync failed -- run git annex again to resume file transfer
+ l dafailed
+ ta stream (code 12) atcopy
+
+
+And I get this message for every file.
+
+
+I do have cygwin with rsync and ssh installed on this machine previously so I tried on a separate machine thinking there may be compatibility issues with no avail either. I am not sure if this is an existing issue/work in progress with Windows/git-annex or if it is something I am just experiencing.