##thumbscrew A git clean filter to help work with Keynote files in git.
"Works" by adding thumbnails to a per-presentation directory so that diffs in the Keynote binary are visible in some way (i.e. as diffs of the thumbnails).
PR #2 is a decent example of this.
TODO:
- Installer would be nice
-  git thumbscrewcommand option a la git-lfs
- single commit?
- License
- CONTRIBUTING.md
- In your .git/configfile add the following:
[filter "thumbscrew"]
  clean = thumbscrew-clean %f
  smudge = cat
- Make sure that the thumbscrew-cleanscript is available inPATH
Add the Keynote extension to the .gitattributes like in the following example:
*.key    filter=thumbscrew
Use git add and git commit the way you would regularly do this.
If using git-lfs please make sure that the above filters come BEFORE the git-lfs filters in .gitattributes.