9

is there a tool that does automatic file-versioning (for local files), like dropbox? Seeing how easy it is to restore older versions using dropbox compared to svn...

[EDIT]

I know how svn and dropbox are intendend for very different purposes, and that svn provides much much more functionality, but the truth is that for my usual coding-work on my small projects I hardly need those and automatic commits & updates would really be wonderfull, considering how much time I've wasted because I screwed something up in svn.

Dexter
  • 3,072
  • 5
  • 31
  • 32
  • 1
    Isn't this a question for Super User, not stackoverflow? – data May 12 '11 at 19:14
  • **Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic** for Stack Overflow as they tend to attract opinionated answers and spam. Thus I flagged this question accordingly. – Filnor Dec 03 '18 at 14:36

2 Answers2

13

FileHamster monitors a folder and automatically keeps previous version. AutoVer does the same and is free. It would be my recommendation!

Both let you traverse previous versions and can backup everytime you hit save or every so often or a combination of both. Not sure if AutoVer copes well with MS Office tmp files though.

AutoVer also lets you run a post-backup command which I keep meaning to make use of to create diff files...

Vimes
  • 10,577
  • 17
  • 66
  • 86
TomG
  • 456
  • 3
  • 11
5

I would use:

You could even go as far as to do a commit (and its associated push) every time you save a file in your IDE (like a "on save" action in Eclipse), but the result would be messy (way too many commits).
An on-demand action to commit every file at a given time, or a scheduled action (every hour for instance) is more appropriate.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250