Win32Text to Eol Migration

For example, your hgrc contains the following lines

[extensions]
win32text=

[decode]
**.dfm = cleverdecode:

[encode]
**.dfm = cleverencode:

1. Replace win32text with eol in hgrc. Your hgrc now looks like this :

[extensions]
eol=

2. Create a .hgeol file in your repository beginning with the following line

[patterns]

Take all lines in your [encode] section and replace "cleverencode:" with "native"

For example :

[patterns]
**.dfm = native

3. Commit .hgeol

4. Remove the encode/decode sections in hgrc

5. You're done !