the idea is that i want to share documents over git

i thought about using Text Document (looks like docx,odt in functionality ) that can be edited with any text editor (not binary). where to find something like this ?

any better solution?

link|improve this question

docx|odt are binary – Lazy Badger Jan 10 at 1:08
@LazyBadger: that's not 100% true. ODT is zipped XML... – eckes Jan 10 at 6:40
@eckes: When zip became text? Did I miss something? – Lazy Badger Jan 10 at 10:39
is there any way to zip/unzip those files when using git commands ? my problem is that git sees those files as binary (because they're zipped) when conflict happens ,i can't resolve it any way !! :( – MhdSyrwan Jan 10 at 15:41
feedback

1 Answer

up vote 4 down vote accepted

Have you considered using LaTeX instead of doc or odt? This way you can edit the documents with any text editor and get good looking results. Better yet: you have proper diffs between revisions (no matter the SCM you use).

If you don't like the idea of editing the document in a simple text editor take a look at LyX. It provides a gui for editing documents like you would get in normal document editors.

For git hosting solutions you can use:

  1. github (if your documents are open-source, which I don't think)
  2. bitbucket (offers unlimited repositories, with unlimited space and up to 5 users for project)
link|improve this answer
is it easy to merge conflicts in Lyx ? – MhdSyrwan Jan 10 at 15:38
@MhdSyrwan: I would suggest you to use a specialized merge tool. For example I use: p4merge (from Perforce). More info in this question: stackoverflow.com/questions/426026/… – Igor Popov Jan 10 at 18:38
but any other tool won't understand LateX !! they will see it as complex text that i can't understand to merge ,is there any way to set the Lyx compare tool as the merge tool ? – MhdSyrwan Jan 10 at 21:16
I haven't used LyX myself so I can't give you to many details related to it. As far as I know, p4merge will show you the content as text (not rich content). – Igor Popov Jan 11 at 9:54
feedback

Your Answer

 
or
required, but never shown

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