I have configure svn with Xcode.
When i try to commit repository files with i got the Error
svn: Commit failed (details follow):
svn: Error normalizing log message to internal format
svn: Inconsistent line ending style
Anyone have idea, please suggest me. how can i solve this?
From the message I see that you have
Inconsistent line ending style. That means that you source files for some reason have mixed EndOfLine styles (e.g. Windows CRLF and *nix CR). You should check through you source files and make sure line endings are uniform and match EndOfLine style your SVN expects.That kind of thing can happen if you copy/paste code from various sources and/or use different IDEs to write your code.