What revision control programs or methods do you guys use when writing?
|
closed as not constructive by Tom Wijsman, Robert Cartaino♦ Aug 5 '11 at 2:16
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
It depends on the complexity. (and what I am writing.) For some things, copying the file at significant moments is enough. For others, I use the same SCM as my code (Subversion/Git). Or even the one built into my IDE (Eclipse.) For writing type writing, sometimes the tool keeps a history including dropbox or my wordpress blog. |
|||
|
|
|
It depends on your environment (one machine, multiple machines, OSes, possibility of sharing, importance of security and robustness vs ease of use). While I favor using traditional version control for most of my writing and work, I like the convenience of Dropbox for quick informal documents. It has the bonus of being cross-platform, having automatic syncing and versioning built in, as well as having the possibility to share documents or access them over the web. That said, know that they had some security issues in the past, and I do not consider them a robust solution, just a convenient one. For my more serious documentation and articles, I write them in LaTeX and manage them using git, allowing me to have local source control as well as having the possibility to push the changes somewhere else, for external reviewers and official versions. |
||||
|
|
|
It depends on the context. SE answers and email get typed directly into the window. :) At work, most of what I write is going to end up in a word document or (shudder) a PowerPoint chart. Neither of those programs have passable version control so I've resigned to one of two pretty lackluster solutions:
Needless to say, even these solutions are better than version control by email, which is what a lot of folks seem to do. Now, when working alone (i.e. at home), I've taken to making notes in plain text files (perhaps in Markdown) and storing them in a personal Mercurial repository. That way I can get decent looking formatting when I preview the files, but I also get efficient storage of diffs and the ability to use a standard diff program to track changes. |
|||
|
|
|
It can be anything. All modern SCM programs handle binary files such as Word .doc/.docx ones. They just won't be able to diff it internally. |
|||
|
|