Size: 569
Comment:
|
← Revision 5 as of 2011-03-28 06:38:43 ⇥
Size: 827
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
For example, your hgrc contains the following lines | How to migrate from the deprecated Win32TextExtension to the newer EolExtension. |
Line 5: | Line 5: |
For example, your configuration file (''`mercurial.ini`'' or ''`.hgrc`'' file) contains the following lines: | |
Line 16: | Line 17: |
1. Replace win32text with eol in hgrc 2. Create a .hgeol file in your repository beginning with the following line {{{ |
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: {{{ |
Line 20: | Line 26: |
}}} | }}} |
Line 22: | Line 28: |
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 24: | Line 30: |
For example : {{{ |
For example: {{{ |
Line 29: | Line 34: |
}}} | }}} |
Line 31: | Line 36: |
3. Commit .hgeol | 3. Commit ''`.hgeol`'' |
Line 33: | Line 38: |
4. Remove the encode/decode sections in hgrc | 4. Remove the encode/decode sections in the config file. |
Line 35: | Line 40: |
5. You're done ! | 5. You're done! |
Win32Text to Eol Migration
How to migrate from the deprecated Win32TextExtension to the newer EolExtension.
For example, your configuration file (mercurial.ini or .hgrc file) contains the following lines:
[extensions] win32text= [decode] **.dfm = cleverdecode: [encode] **.dfm = cleverencode:
Replace win32text with eol in your config file. Your config now looks like this:
[extensions] eol=
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
Commit .hgeol
- Remove the encode/decode sections in the config file.
- You're done!