我有两个问题:
有没有办法查看.docx
文件Github
?我们已将所有作业上传到Github,但我们无法在浏览器中查看它.如果我们可以.docx
在不下载文件的情况下在浏览器中查看这些文件,那就太好了.
如何使用git diff
的.docx
文件格式?我尝试使用catdoc
但它对我不起作用.我想我以前曾git diff
在Windows上用过这种.doc
格式,但它在Mac上并不适用于我.
非常感谢.
回答第二部分问题.已经是一个老帖子,但在前10名中没有答案就出现了.通过以下设置,您可以在docx文件上找到一个穷人的差异.
在.gitattributes中使用:
*.docx diff=zip
在.git/config中使用:
[diff "zip"] textconv = unzip -c -a
作为奖励我的旧单词/ excel和新单词/ excel的设置:
在.gitattributes中使用:
*.doc diff=word *.xsl diff=excel *.xlsx diff=zip *.docx diff=zip
在.git/config中使用:
[diff "word"] textconv = strings [diff "excel"] textconv = strings [diff "zip"] textconv = unzip -c -a