最佳答案
好的,我添加了 .gitattributes
文件,行如下所示
*.css text
*.js text
etc...
然后我按照 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"
但是现在我的工作副本还有马车回来!我想保留一些未被追踪的文件。如何使用规范化文件再次签出主分支?
我知道这些文件在存储库中是规范化的,因为当我克隆回购文件时,所有的文件都没有回车。