views:

21

answers:

2

I search for way to synch my local code with server on debain linux. For example i modify some files, then i can run synch command, and only changed files send to server (using ssh for ex). Can you help me with good light solution for this?

A: 

You should consider using some sort of source control tool like Subversion, Git, Mercurial, etc.

Otherwise the rsync command should do what you want.

Bryan Denny
A: 

Sounds like a perfect job for rsync, in the absence of a proper source control system.

rsync sends minimal information over the network to keep the two sides in sync, and can work over SSH.

RichieHindle