This commit is contained in:
falcone857 2015-05-04 22:01:24 +00:00 committed by admin
parent ffd9c646c4
commit 398f2d7a4c

View file

@ -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: 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 git clone ssh://user@IP.ADDRESS/home/user/annex annex
cd annex cd annex
git annex init 'windows' git annex init 'windows'
git annex copy --from origin 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: 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: 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 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: connection unexpectedly closed (0 bytes received so far) [Receiver]
rsync error: error in rsync proto rsync error: error in rsync proto
co rsync failed -- run git annex again to resume file transfer co rsync failed -- run git annex again to resume file transfer
l dafailed l dafailed
ta stream (code 12) atcopy ta stream (code 12) atcopy
``` ```
And I get this message for every file. And I get this message for every file.