Does subversion support word, excel and powerpoint documents? "support" here means having history available and I can get old version out from the subversion. It will be nice if I can diff different versions. thanks,
Asked
Active
Viewed 3.3k times
19
-
yes, see [here](https://stackoverflow.com/questions/90202/can-i-merge-two-microsoft-word-documents-reliably-with-subversion) and [here](https://stackoverflow.com/questions/29810/is-version-control-ie-subversion-applicable-in-document-tracking) – davin Jan 11 '11 at 21:21
2 Answers
22
Yes, and TortoiseSVN supports diffing for Word and Excel really well, by invoking those app's native document comparison functions (not sure about PowerPoint).

Duncan Smart
- 31,172
- 10
- 68
- 70
-
1Will it use the native diff to automatically merge when you update a working copy? Thx! – sparc_spread Oct 22 '12 at 20:23
1
You can store binary files using svn
. But you will not be able to diff
them from the command line.
See How do I tell subversion to treat a file as a binary file for advice on the mechanics.
-
1Note that for most binary files, `svn` will automatically handle it correctly, and it will require no special treatment. – Mark Jan 11 '11 at 21:32
-
No. As far as SVN is concerned, the files are still opaque blobs so it doesn't so the sort of automatic merging that it would do for plain text files. – Duncan Smart Oct 23 '12 at 15:41