/ .gitattributes
.gitattributes
1 # Rust compiled artifacts — treat as binary 2 # Combined with target/ in .gitignore this prevents history bloat; 3 # marking these binary also makes any accidental commit immediately obvious 4 # in `git diff` output and blocks corrupt text-mode merges. 5 *.a binary 6 *.rlib binary 7 *.rmeta binary 8 *.so binary 9 *.dylib binary 10 *.dll binary 11 *.exe binary 12 *.pdb binary 13 *.wasm binary 14 *.o binary 15 *.obj binary