<@U01C5TWF32T> if I am understanding what you are ...
# sdf
d
@kwood if I am understanding what you are saying correctly, I think we ran into the same issue - is due to end of line character for SDF XML is LF not typical CRLF so git recognizes that as a change even though isn't normally otherwise visible - if this is the case, you just need to add an appropriate
.gitattributes
file to your repo to resolve
I'm not an expert on this, but i'll just go ahead and paste what we ended up using (think I just found online somewhere at the time) and seemed to work fine for us:
Copy code
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.js text

# Declare files that will always have LF line endings on checkout.
*.xml text eol=lf
k
Thanks!
That appears to have fixed it, thanks again!
👍 1