Differences between revisions 3 and 4
Revision 3 as of 2011-03-25 16:59:32
Size: 635
Editor: mail
Comment:
Revision 4 as of 2011-03-28 06:36:51
Size: 687
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
For example, your hgrc contains the following lines
For example, your hgrc contains the following lines:
Line 16: Line 15:
1. Replace win32text with eol in hgrc.
Your hgrc now looks like this :
{{{
 1. Replace `win32text` with `eol` in your config file. Your config now looks like this:
 {{{
Line 21: Line 19:
}}}  }}}
Line 23: Line 21:
2. Create a .hgeol file in your repository beginning with the following line
{{{
 2. Create a ''`.hgeol`'' file in your repository beginning with the following line:
 {{{
Line 26: Line 24:
}}}  }}}
Line 28: Line 26:
Take all lines in your [encode] section and replace "cleverencode:" with "native"  Take all lines in your `[encode]` section and replace `cleverencode:` with `native`.
Line 30: Line 28:
For example :

{{{
 For example:
 {{{
Line 35: Line 32:
}}}  }}}
Line 37: Line 34:
3. Commit .hgeol  3. Commit ''`.hgeol`''
Line 39: Line 36:
4. Remove the encode/decode sections in hgrc  4. Remove the encode/decode sections in the config file.
Line 41: Line 38:
5. You're done !  5. You're done!

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 your config file. Your config 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 the config file.
  5. You're done!

MigratingFromWin32TextToEol (last edited 2011-03-28 06:38:43 by MartinGeisler)