> Does it reproduce for the local repo only? >yes The solution is: 1) commit the changes (ensure `git status` "no modifications". untracked files are fine) 2) remove the offending files (e.g. rm bin/report-template/sbadmin2-1.0.7/bower_components/flot.tooltip/js) 3) git reset --hard (it will re-create the files with proper line endings)
Note: git reset --hard discards uncommitted modifications, so be careful if you just copy-paste the commands one by one. I think it happens because once upon a time Git learned that "those js files have CRLF issues" and it just silenced the warning. After you remove the files (just from the disk) and do reset --hard the problem should go away. Does it work for you? Vladimir
