好了,所以我添加的文件.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"
但是现在我的工作副本仍然有回车的消息!我有要保留的未跟踪文件。git如何使用规范化文件再次检出master分支?
我知道文件在存储库中已标准化,因为克隆克隆存储库时,我拥有的所有文件都没有回车符。