Changes History & Auto-Save in Mathematica & Others

0

Does anybody know of way to save changes history ?

In Wolfram Mathematica but also for other type of documents ?

500

Posted 2011-05-26T21:10:14.807

Reputation: 139

2

Maybe you should try using some sort of version control. Personally, I use git for most things now (including Mathematica notebooks).

– Simon – 2011-06-11T12:03:21.973

Answers

2

Mathematica documents are ASCII text files, so they are friendly to all version control systems like git, mercurial, bazar, svn, etc. I personally use and recommend git. One of its advantages is its fast performance which is important for the potentially large files that Mathematica generates.

Also you may be interested in when a particular cell was changed. Each cell contains a property named CellChangeTimes with that information.

Lastly, if you want a very simple solution is to store your file in DropBox, or. use a Mac with Time Machine.

gdelfino

Posted 2011-05-26T21:10:14.807

Reputation: 147

2

You can find a complete answer over at mathematica.stackexchange https://mathematica.stackexchange.com/q/5518/388

In summary any text source control will work about that same since mathematica's notebook file format is out side the working assumptions of all common source control systems.

Also pointed out as comment in the linked question: https://stackoverflow.com/questions/2816628/version-control-of-mathematica-notebooks

Davorak

Posted 2011-05-26T21:10:14.807

Reputation: 121