branch | stable |
changeset 19086 | 8fb8dce3f9b6 |
parent 17015 | 73d20de5f30b |
child 19087 | 7d82ad4b3727 |
19085:be207d9b7e4b | 19086:8fb8dce3f9b6 |
---|---|
1 hide outer repo |
|
2 $ hg init |
|
3 |
|
4 Test case sensitive configuration |
|
5 |
|
6 $ echo '[Section]' >> $HGRCPATH |
|
7 $ echo 'KeY = Case Sensitive' >> $HGRCPATH |
|
8 $ echo 'key = lower case' >> $HGRCPATH |
|
9 |
|
10 $ hg showconfig Section |
|
11 Section.KeY=Case Sensitive |
|
12 Section.key=lower case |
|
13 |