[pypy-svn] r8691 - pypy/dist/pypy/documentation

lac at codespeak.net lac at codespeak.net
Sat Jan 29 09:41:03 CET 2005


Author: lac
Date: Sat Jan 29 09:41:03 2005
New Revision: 8691

Modified:
   pypy/dist/pypy/documentation/howtosvn.txt
Log:
Add a paragraph about how to avoid line ending hell on your client.


Modified: pypy/dist/pypy/documentation/howtosvn.txt
==============================================================================
--- pypy/dist/pypy/documentation/howtosvn.txt	(original)
+++ pypy/dist/pypy/documentation/howtosvn.txt	Sat Jan 29 09:41:03 2005
@@ -135,6 +135,25 @@
     http-proxy-host = codespeak.net
     http-proxy-port = 8080
 
+How to Avoid Line-ending Hell
+-----------------------------
+
+We will assume that whenever you create a .txt or a .py file, you would
+like other people to be able to read it with the line endings their
+OS prefers, even if that is different from the one your OS likes.  This
+could occasionally be wrong -- say when you are specifically testing
+that code you are writing handles line endings properly -- but this is
+what you want by default.  Binary files, on the other hand, should be
+stored exactly as is. This has to be set on every client. Here is how:
+
+In your home directory edit .subversion/config and comment in ::
+
+   enable-auto-props = yes
+
+   *.txt = svn:eol-style=native
+
+and add a line for .py files.
+
 --------------------------------------------------------------------------------
 
 



More information about the Pypy-commit mailing list