comparison contrib/win32/mercurial.ini @ 1298:d843eaadee79

Add INI file for Windows.
author Bryan O'Sullivan <bos@serpentine.com>
date Wed, 21 Sep 2005 14:40:52 -0700
parents
children 2dc06dd76ff4
comparison
equal deleted inserted replaced
1297:496074e0a38b 1298:d843eaadee79
1 ; System-wide Mercurial config file. To override these settings on a
2 ; per-user basis, please edit the following file instead, where
3 ; USERNAME is your Windows user name:
4 ; C:\Documents and Settings\USERNAME\Mercurial.ini
5
6 ; By default, we try to encode and decode all files that do not
7 ; contain ASCII NUL characters. What this means is that we try to set
8 ; line endings to Windows style on update, and to Unix style on
9 ; commit. This lets us cooperate with Linux and Unix users, so
10 ; everybody sees files with their native line endings.
11
12 [extensions]
13 ; The win32text extension is available and installed by default. It
14 ; provides built-in Python hooks to perform line ending conversions.
15 ; This is normally much faster than running an external program.
16 mercurial.ext.win32text =
17
18
19 [encode]
20 ; Encode files that don't contain NUL characters.
21 ** = cleverencode:
22
23 ; Alternatively, you can explicitly specify each file extension that
24 ; you want encoded (any you omit will be left untouched), like this:
25
26 ; *.txt = dumbencode:
27
28
29 [decode]
30 ; Decode files that don't contain NUL characters.
31 ** = cleverdecode:
32
33 ; Alternatively, you can explicitly specify each file extension that
34 ; you want decoded (any you omit will be left untouched), like this:
35
36 ; **.txt = dumbdecode: