- Joined
- Feb 28, 2019
- Messages
- 15
- Reaction score
- 1
- First Language
- English
- Primarily Uses
- RMMV
I have my RMMV project checked into git.
I notice that pretty much any time I do anything, git says that a bunch of files in data/*.json have changed. I fixed some of this by adding a .gitattributes file with
but I still see data/System.json changing all the time. It looks like there is a versionId field in there that gets bumped. That's fine but it would be everything in data/System.json is on one line so it's hard to see that. Is there a way to tell git or RMMV or something to either have line breaks in data/System.json so its easier to see what has changed or to somehow highlight that change instead of showing one gigantic diff just when that one field changes?
Also, any tips on how to configure/use git with RMMV would be much appreciated.
Thanks in advance
I notice that pretty much any time I do anything, git says that a bunch of files in data/*.json have changed. I fixed some of this by adding a .gitattributes file with
Code:
# For json files in data/ don't mess with them
data/*.json text=false
Also, any tips on how to configure/use git with RMMV would be much appreciated.
Thanks in advance

