Awesome, thanks very much!
wiige your diff file is highly effective on locating documentation changes, is there any unified way I can track other documentation changes like spine-phaser 运行时文档 or spine-godot 运行时文档?
Very glad it helps! I created the diffs the following way, using git-bash when using Windows:
- Create a directory for the documents to be tracked.
git init .
to create a simple local git repository at this directory.- Create your document file like
spine-unity.md
and paste the current page content in it. git add spine-unity.md
andgit commit
the addition.- Then after modifying the document, again
git add spine-unity.md
andgit commit
the changes. - Then use git to view the diff between versions. I used
git diff @~1 @ | clip
to copy the diff between the previous (@~1
) and the last commit (@
) to the clipboard, then I paste it at https://diffy.org to share it with others.
I've shared the precise steps in case it helps others.