Question

Can you recommend a good SSH file sync utility for Windows? For example, I have some C++ sources that I need to compile remotely. I need this utility to be simple and most of all responsive, so I can compile my sources instantly after saving, without having to wait for the sync to be triggered.

Was it helpful?

Solution

for source-code, you could use something like git or subversion, paired with an ssh-connection using port-forwarding.

in all cases you would need to trigger the sync yourself except you have a tool that watches the directory you're working on.

OTHER TIPS

WinSCP supports synchronization from both gui and command line.

Use rsync. See this. There is even an instruction to set automatic backup.

try this, SSHSync for windows

http://code.google.com/p/sshsync/

A command line applications that allows intelligent Secure FTP transmissions. SshSync only support pull type transfers, but it allows use of a Private Key to ensure that authentication is secure. A text file that contains a list of files always processed is used to check that only 'new' files are retrieved.

Sounds like a job for a Continuous Integration tool.

install cygwin and use rsync over ssh.

It seems to me that one way to solve your problem would be to simply use a network drive. Edit your files from the network drive, and whenever you save, any other systems connected to that drive can also access your changes, including your build server. That's what we do at my office — everyone's home directories are on NFS/CIFS shares, so we edit on our local computers, but run a script to trigger a build on any of several build servers, even multiple platforms at once. We don't have to sync anything before being allowed to compile our latest changes.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top