Ok, quindi ho aggiunto il file .gitattributes
con linee come questa
*.css text
*.js text
etc...
Ho quindi seguito le istruzioni su http://git-scm.com/docs/gitattributes#_checking-out_and_checking-in
$ rm .git/index # Remove the index to force Git to
$ git reset # re-scan the working directory
$ git status # Show files that will be normalized
$ git add -u
$ git add .gitattributes
$ git commit -m "Introduce end-of-line normalization"
Ma ora la mia copia di lavoro ha ancora i resi! Ho file non tracciati che vorrei conservare. Come faccio a controllare nuovamente con git il ramo principale con i file normalizzati?
So che i file sono normalizzati nel repository perché quando clono il repository, ho tutti i file senza i ritorni a capo.