Question about SVN and line seperators
I work in a mixed OS environment and us SVN as my repository. When I have a file, as an example, that is in SVN with LF line endings and the file in PyCharm has CRLF line endings when I try to commit the changes I get the message 'Contents have differences only in line seperators'. Can I force PyCharm to not ignore these differences?
请先登录再写评论。
SVN uses platform default line separators for text files on checkout. If the file must have some fixed separators style, it should be defined via svn:eol-style property. You can also change the default line separators used in PyCharm in Settings | Code Style | General.
Thanks! I have been able to resolve the issues I was facing with your help.