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

I create documents on a regular basis for my freelance projects and keep updating it on an ongoing basis. Till now I was able to manage the documents using the Google Docs, and was manually updating the revision history.

However, the volume of documents which are getting edited is increasing. And now I want to employ an open source (or something free) software to manage the version control of the documents. It would be nice if all this can be done on cloud.

Please suggest me the solution to the above problem I am going through.

share|improve this question

2 Answers

Google Docs itself seems already adapted to your need, since it supports revision history.

enter image description here

A Version Control solution would be needed only if you wanted branches and merging between those branches (as mentioned in "Source control vs. Revision Control?").

share|improve this answer

The Revisionator is like google docs, but it has full blown version control built in. The problem with Google Docs is that there is no concept of a working version. Stuff is added to revision history as soon as anyone types anything, even if it doesn't conceptually represent a new version. Also, since everyone is editing the document at the same time, different people's changes are mixed up with each other. Gives you a nasty mess.

Since the revisionator uses working versions, you can stage your edits, resulting in a much more understandable revision history.

It also supports diffing, branching, and merging.

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.