Tamam, bu .gitattributes
gibi satırları içeren dosyayı ekledim
*.css text
*.js text
etc...
Daha sonra http://git-scm.com/docs/gitattributes#_checking-out_and_checking-in adresindeki talimatları izledim
$ 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"
Ama şimdi benim çalışma kopyamda hala satır başı var! Saklamak istediğim izlenmemiş dosyalarım var. Git ana dalı normalleştirilmiş dosyalarla tekrar kontrol edebilir miyim?
Depodaki dosyaların normalleştirildiğini biliyorum, çünkü depoyu klonladığımda, tüm dosyalara satır başları olmadan sahip oluyorum.