5

我想使用 rsync 将 git repo 从 linux 机器镜像到多个 Windows 服务器。到目前为止,我在网上看到的是需要您使用 samba 安装 Windows 端的解决方案。理想情况下,我想避免这种情况,因为它需要管理多个安装,更不用说安全问题了。我已经验证我至少可以通过 ssh 连接到我的测试服务器。我在 Windows 服务器上安装了 cwRsync。我尝试以下命令,但 rsync 似乎不喜欢 rsync 可执行文件路径中的空间。

rsync -rlH --rsync-path="c:/Program\ Files/cwRsync/bin/rsync.exe" . Administrator@cool03-stage:d:/rsync_test/.
'c:/Program\' is not recognized as an internal or external command,
operable program or batch file.
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-42/rsync/io.c(452) [sender=2.6.9]
4

1 回答 1

2

在 Windows 服务器上将 C:\Program Files\cwRsync\bin 添加到我的 PATH 后,我可以运行以下命令:

rsync -rlH -e ssh . Administrator@cool03-stage:/cygdrive/d/rsync_test/.

似乎工作。

于 2014-09-30T04:46:37.277 回答