vote up 1 vote down star

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?

flag

77% accept rate

6 Answers

vote up 4 vote down check

G'day,

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

cheers,

Rob

link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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