Hi there.
what is happen?
% svn revert xxxxx2.cpp <----------- whim:-)
---------------------
(1) yesterday
% ver
Microsoft Windows XP [Version 5.1.2600]
% svn --version
svn, version 1.4.5 (r25188)
compiled Aug 22 2007, 20:49:04
(windows native)
% python cvs2svn.py --dumpfile=... (cvs2svn-2.0.0)
% svnadmin load ....
% svn co ....
% file xxxxx2.cpp
xxxxx2.cpp: Non-ISO extended-ASCII C++ program text, with LF, NEL line
terminators
====
oops!
---------------------
(2) today
% ver
Microsoft Windows XP [Version 5.1.2600]
% svn --version
svn, version 1.4.5 (r25188)
compiled Aug 22 2007, 20:49:04
(windows native)
% python cvs2svn.py --default-eol=CRLF --dumpfile=...
==================
% svnadmin load ....
% svn co ....
% file xxxxx2.cpp
xxxxx2.cpp: Non-ISO extended-ASCII C++ program text, with CRLF, NEL
line terminators
======
% svn diff xxxxx2.cpp
Index: xxxxx2.cpp
===================================================================
--- xxxxx2.cpp (revision 117)
+++ xxxxx2.cpp (working copy)
@@ -1,10563 +1,10563 @@
-/*----------------------------------------------------------------------
- * xxxx2
(all the end of line is different. LF<->CRLF)
% copy xxxxx2.cpp xxxxx2.cpp.co
% diff xxxxx2.cpp xxxxx2.cpp.co
(no difference)
% svn revert xxxxx2.cpp <----------- whim:-)
% diff xxxxx2.cpp xxxxx2.cpp.co
(no difference)
% file xxxxx2.cpp
xxxxx2.cpp: Non-ISO extended-ASCII C++ program text, with CRLF, NEL
line terminators
======
% svn diff xxxxx2.cpp
(no difference)
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Aug 30 11:25:00 2007