How does Git deal with binary files?
- Do I have to do something to tell Git whether some files are binary (like in Subversion)? Or, can Git handle binary data automatically?
- If I change the binary
-
2020-12-24 12:03
- Git can usually detect binary files automatically.
- No, Git will attempt to store delta-based changesets if it's less expensive to (not always the case).
- Submodules are used if you want to reference other Git repositories within your project.