Taula de continguts

.git* - .gitattributes

indica la naturaleza de cierto tipos de archivos para optimizar el control de cambios.

*.tgz binary
code/*.zip binary

renormalize

# 1. Definir el atributo
echo "*.bin binary" >> .gitattributes
 
# 2. Forzar a Git a tratar los existentes como binarios
git add --renormalize .
 
# 3. Tu script habitual
git commit -m "Update attributes and files"
git push origin master

LFS (filter)