Unity
svn Inconsistent line ending style 에러
cho22
2021. 11. 24. 22:51
반응형
svn에서 커밋을 하려고하는데 " inconsistent line ending style " 에러가 나오면서 커밋이 안되는 오류가 발생했다.
How should I Fix “svn: Inconsistent line ending style”? - Genera Codice
My problem was that I was getting this in Visual Studio.NET. To fix it, I copied all the text of the file into notepad and saved it from Notepad to "xxx.aspx" or whatever the proper file name is. Then in Visual Studio, I was prompted to reload a changed fi
www.generacodice.com
이글을 보고 해결했는데, 해결방법은
notepad ++로 해당 cs파일을 연다.
줄의 끝문자 변환 -> Unix로 변환하고 저장.
다시 줄의 끝문자 변환 -> Windows로 변환하고 저장.
이후 커밋하니 해결.
반응형