Mac true folder sync

1

I'm looking for a free solution to sync 2 folders together with a true sync. Meaning you delete a file in either place, and it updates that in the other folder. Not a backup from one to the other type like most software solutions have.

Is there a free solution out there for this?

I tried rSync but that doesn't seem to allow for true syncing.

I'm on Mac OS X Snow Leopard 10.6.3

v15

Posted 2010-07-06T15:04:02.213

Reputation: 1 805

Answers

4

Jeremy L

Posted 2010-07-06T15:04:02.213

Reputation: 2 587

4

If you are looking to go cross-platform, try unison. It works at the command line, and does a very good job.

Peter Murray

Posted 2010-07-06T15:04:02.213

Reputation: 827

does this feature a nice GUI? I prefer not to use command line – v15 – 2010-07-06T16:14:37.443

You can use it either way. – JRobert – 2010-07-07T01:01:28.593

1

If you don't know what Git is, I wouldn't recommend it for this purpose.

A program like ChronoSync might be more in-line with what you're looking for.

UPDATE

Another program that might help out is called SuperDuper.

Clint Miller

Posted 2010-07-06T15:04:02.213

Reputation: 121

is there a free equivalency? – v15 – 2010-07-06T19:40:35.597

Actually, yes. I've used ChronoSync before, but I just remembered that SuperDuper is free for "basic" features, would at least get you started. See UPDATE above. – Clint Miller – 2010-07-06T20:53:58.310

0

I'm doing this via Git. It does much more as it remembers all the history and thus is also more complex to use but you could write simple shortcut scripts which do just the syncing. If you want to safe space and not safe the full history (but only the last 10 changes or so), you can do that also with Git.

Albert

Posted 2010-07-06T15:04:02.213

Reputation: 5 059

how do I get started with this? i don't know what Git is, sorry. – v15 – 2010-07-06T15:33:47.353

http://code.google.com/p/git-osx-installer/ http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html I'm doing it via Terminal. You need some background knowledge or need to learn a few commands to use it. I don't know if there are easy to use GUIs for that (because I feel more comfortable in the console). – Albert – 2010-07-06T16:15:37.753

0

You could try using rsync on a cron schedule if you're not married to using a GUI for it. otherwise, I'd suggest going with one of the other answers. This is a little bit of initial set up as you get it running, but then it will be fairly stable after that. Basic unix tools don't generally change drastically too often.

user12764

Posted 2010-07-06T15:04:02.213

Reputation: 271