Using Microsoft Word with Git
blog.martinfenner.org
Using Microsoft Word with Git
1–10 of 136 posts
Re: Using Microsoft Word with Git
#2Re: Using Microsoft Word with Git
#3Re: Using Microsoft Word with Git
#4.docx is just an archive format. If I remember correctly the contents inside the .docx archive are plain text. Can’t we just use version control inside of there? We would have to of course figure out a way to have git unpack and pack the archive each time.
Re: Using Microsoft Word with Git
#5.docx is just an archive format. If I remember correctly the contents inside the .docx archive are plain text. Can’t we just use version control inside of there? We would have to of course figure out a way to have git unpack and pack the archive each time.
Apart from attachments and metadata the actual document is some kind of xml monstrosity that contains the text and the markup. It’s not very useful to just create diffs from that, it looks a bit like the HTML created by FrontPage if you remember that.
You can just rename a docx file to .zip, unpack it and peek around.
Re: Using Microsoft Word with Git
#6Now we need a native diff viewer for structured files, where the changes are presented with attribution either side by side, or alongside (like gitk, or like gitlab diff viewer).
Then we need an editor that supports doing the gitty stuff natively, so that the non-technical writer doesn't have to worry about creating repos and committing the changes from the command line.
Re: Using Microsoft Word with Git
#7Not long ago I read some article here on HN that the world is still waiting for a git equivalent for documents. This seems like a good start. Now we need a native diff viewer for structured files, where the changes are presented with attribution either side by side, or alongside (like gitk, or like gitlab diff viewer). Then we need an editor that supports doing the gitty stuff natively, so that the non-technical writ…
Feedback welcome: https://www.simuldocs.com/
Re: Using Microsoft Word with Git
#8.docx is just an archive format. If I remember correctly the contents inside the .docx archive are plain text. Can’t we just use version control inside of there? We would have to of course figure out a way to have git unpack and pack the archive each time.
It’s a zip, that’s not the hard part. Apart from attachments and metadata the actual document is some kind of xml monstrosity that contains the text and the markup. It’s not very useful to just create diffs from that, it looks a bit like the HTML created by FrontPage if you remember that. You can just rename a docx file to .zip, unpack it and peek around.
Re: Using Microsoft Word with Git
#9Re: Using Microsoft Word with Git
#10Not long ago I read some article here on HN that the world is still waiting for a git equivalent for documents. This seems like a good start. Now we need a native diff viewer for structured files, where the changes are presented with attribution either side by side, or alongside (like gitk, or like gitlab diff viewer). Then we need an editor that supports doing the gitty stuff natively, so that the non-technical writ…
After a lot of trying to get Git and Word to play nice together, we ended up building a collaboration tool to bring the power of Git (branching & merging) to non-technical Word users. Feedback welcome: https://www.simuldocs.com/