-
-
Notifications
You must be signed in to change notification settings - Fork 72
FAQ
Trevor Williams edited this page May 17, 2022
·
3 revisions
Q. I would like to store .minder files in Git, but I run into merge issues with the filetype. How should I handle this?
A. Create a .gitattributes
file in the root repository directory and add the following contents to it:
*.minder -diff merge=binary
This will treat .minder files as binary files, replacing the previous version with the new version when Git commits take place.