좋아요, 그래서 다음 .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"
그러나 이제 내 작업 사본에는 여전히 캐리지 리턴이 있습니다! 보관하고 싶은 추적되지 않은 파일이 있습니다. 정규화 된 파일로 마스터 브랜치를 다시 체크 아웃하려면 어떻게해야합니까?
리포지토리를 복제하면 캐리지 리턴이없는 모든 파일이 있기 때문에 파일이 리포지토리에서 정규화된다는 것을 알고 있습니다.