好的,所以我.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 checkout master 分支?
我知道文件在存储库中已标准化,因为当我克隆存储库时,所有文件都没有回车。