I’d like to put some Omnigraffle files under version control. Omnigraffle stores those files as .graffle directories.
I’d like git to treat these directories as a single file.
How should I do that?
I tried putting *.graffle binary in .gitattributes but it does not work.
Thanks!
To treat the directories and their contents as a single file you would need to write smudge/clean scripts. Any reason that you need to do this and can’t keep them as is?
If they cumbersome, large and too heavy, you might want to put them in a separate repository and use submodules to link them.