From d73261b1b08d43aa0de661076a33af46c8907b43 Mon Sep 17 00:00:00 2001 From: falcone857 Date: Mon, 4 May 2015 22:00:11 +0000 Subject: [PATCH 1/5] --- doc/forum/git_annex_windows_and_rsync.mdwn | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 doc/forum/git_annex_windows_and_rsync.mdwn 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 0000000000..106044a693 --- /dev/null +++ b/doc/forum/git_annex_windows_and_rsync.mdwn @@ -0,0 +1,27 @@ +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 proto +co 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. From ffd9c646c445461542c788d849bab82b734e668c Mon Sep 17 00:00:00 2001 From: falcone857 Date: Mon, 4 May 2015 22:00:47 +0000 Subject: [PATCH 2/5] --- doc/forum/git_annex_windows_and_rsync.mdwn | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/forum/git_annex_windows_and_rsync.mdwn b/doc/forum/git_annex_windows_and_rsync.mdwn index 106044a693..89f9cbd4a7 100644 --- a/doc/forum/git_annex_windows_and_rsync.mdwn +++ b/doc/forum/git_annex_windows_and_rsync.mdwn @@ -3,22 +3,22 @@ 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 +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 proto -co rsync failed -- run git annex again to resume file transfer +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 proto +co rsync failed -- run git annex again to resume file transfer l dafailed -ta stream (code 12) atcopy +ta stream (code 12) atcopy ``` And I get this message for every file. From 398f2d7a4c80178028d911de7a88537df426dcfd Mon Sep 17 00:00:00 2001 From: falcone857 Date: Mon, 4 May 2015 22:01:24 +0000 Subject: [PATCH 3/5] --- doc/forum/git_annex_windows_and_rsync.mdwn | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/forum/git_annex_windows_and_rsync.mdwn b/doc/forum/git_annex_windows_and_rsync.mdwn index 89f9cbd4a7..4c85aae3b2 100644 --- a/doc/forum/git_annex_windows_and_rsync.mdwn +++ b/doc/forum/git_annex_windows_and_rsync.mdwn @@ -3,22 +3,34 @@ 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) [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 proto + co 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. From 0ea59aa43dd81abc25bf44d9d2faa088ca41a7b6 Mon Sep 17 00:00:00 2001 From: falcone857 Date: Mon, 4 May 2015 22:02:13 +0000 Subject: [PATCH 4/5] --- doc/forum/git_annex_windows_and_rsync.mdwn | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/forum/git_annex_windows_and_rsync.mdwn b/doc/forum/git_annex_windows_and_rsync.mdwn index 4c85aae3b2..7803c22ba4 100644 --- a/doc/forum/git_annex_windows_and_rsync.mdwn +++ b/doc/forum/git_annex_windows_and_rsync.mdwn @@ -3,7 +3,6 @@ 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 @@ -11,7 +10,6 @@ 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: @@ -30,7 +28,6 @@ co 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. From 033cb32022f15318bcd7bcdd33651981ecf84fc7 Mon Sep 17 00:00:00 2001 From: falcone857 Date: Mon, 4 May 2015 22:03:50 +0000 Subject: [PATCH 5/5] --- doc/forum/git_annex_windows_and_rsync.mdwn | 30 ++++++++-------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/doc/forum/git_annex_windows_and_rsync.mdwn b/doc/forum/git_annex_windows_and_rsync.mdwn index 7803c22ba4..c45cd8d2d7 100644 --- a/doc/forum/git_annex_windows_and_rsync.mdwn +++ b/doc/forum/git_annex_windows_and_rsync.mdwn @@ -2,33 +2,23 @@ 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 clone ssh://user@IP.ADDRESS/home/user/annex annex + cd annex + git annex init 'windows' + git annex copy --from origin -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 proto + 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 -co 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.