19

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,

5YrsLaterDBA
  • 33,370
  • 43
  • 136
  • 210
  • 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 Answers2

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
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.

Community
  • 1
  • 1
Raedwald
  • 46,613
  • 43
  • 151
  • 237
  • 1
    Note 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