Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would people recommend doing version control for word documents? Is the in build control up to the job or is it better to rely on dedicated version control systems, and if so, which ones?

share|improve this question

7 Answers

up vote 9 down vote accepted

This was discussed previously on SO with some really good resources mentioned in the responses.

share|improve this answer

@lomaxx:

Subversion has built in support for word documents

More specifically, TortoiseSVN does. If you use the TortoiseSVN context menu in explorer to, e.g., bring up a diff, Tortoise will call a script that uses Word's built-in comparison feature to do the actual diff'ing.

share|improve this answer

You could use something like subversion, but it is going to upload a whole new copy of the document, instead of a changeset.

Sharepoint has some versioning for office documents, but I haven't tried it yet (or checked what it is storing).

share|improve this answer

Try MagnetSVN. It is Microsoft Office Subversion integration that we've built specially for such cases as yours.
Subversion is a reliable source control and it handles word documents well enough:
http://stackoverflow.com/questions/538643/how-good-is-subversion-at-storing-lots-of-binary-files/538658

share|improve this answer

Subversion has built in support for word documents so it's a pretty decent solution, but you might want to look into a proper document repository like the one built into sharepoint 07. The advantage is that it allows proper access control, versioning and rollback as well as being able to link to it from websites.

If you want to do serious versioning then no, I don't think the inbuilt controls will be up to the task, particularly if you want to share the documents with others.

share|improve this answer

SharePoint is definitely the way to document version control in the enterprise.

share|improve this answer
1  
Is "in the enterprise" code for "with MS Office documents"? – andybuckley Nov 2 '12 at 9:45

You could use something like subversion, but it is going to upload a whole new copy of the document, instead of a changeset.

I was under the impression SVN stored byte-level diffs, which makes it possible for it to store incremental changes to binary files such as Word docs and pictures, as well as text files. How to meaningfully represent those changes in a diff is another question, but underneath the hood I think SVN stores changesets for binaries.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.