I am using new sprite atlas feature that is built in since Unity2017.
It will works almost fine. But there contains hash numbers are recalculate very often.
It represented when even i didn’t modified anything.
I just played the editor.
I think hash is based on a target platform. This could mean that if 1 dev is working on Android and other on iOS, then both programmers will override each others hashes on a repository. But thats just my theory.
Unity regenerates the hash every time the sprite atlases are repacked. Presumably the packing process is non-deterministic, meaning every time it repacks, you’ll get a slightly different atlas and with a different hash.
Check your project editor settings (Edit > Project Settings > Editor), and under Sprite Packer > Mode you most likely have the setting Always Enabled . This is fine if you want to test your sprite atlas packing in the editor so you can debug sprite batching issues or similar, but it’s not necessary to permanently work this way. Change it to Enabled For Builds and it will only repack the sprite atlases when you perform a build. This will minimize changes for your version control.