12429
|
1 |
Test the CIA extension
|
7438
|
2 |
|
12429
|
3 |
$ cat >> $HGRCPATH <<EOF
|
|
4 |
> [extensions]
|
|
5 |
> hgcia=
|
|
6 |
>
|
|
7 |
> [hooks]
|
|
8 |
> changegroup.cia = python:hgext.hgcia.hook
|
|
9 |
>
|
|
10 |
> [cia]
|
|
11 |
> user = testuser
|
|
12 |
> project = testproject
|
|
13 |
> test = True
|
|
14 |
> EOF
|
7438
|
15 |
|
12429
|
16 |
$ hg init src
|
|
17 |
$ hg init cia
|
|
18 |
$ cd src
|
|
19 |
$ echo foo > foo
|
|
20 |
$ hg ci -Amfoo
|
|
21 |
adding foo
|
|
22 |
$ hg push ../cia
|
|
23 |
pushing to ../cia
|
|
24 |
searching for changes
|
|
25 |
adding changesets
|
|
26 |
adding manifests
|
|
27 |
adding file changes
|
|
28 |
added 1 changesets with 1 changes to 1 files
|
|
29 |
|
|
30 |
<message>
|
|
31 |
<generator>
|
|
32 |
<name>Mercurial (hgcia)</name>
|
|
33 |
<version>0.1</version>
|
|
34 |
<url>http://hg.kublai.com/mercurial/hgcia</url>
|
|
35 |
<user>testuser</user>
|
|
36 |
</generator>
|
|
37 |
<source>
|
|
38 |
<project>testproject</project>
|
|
39 |
<branch>default</branch>
|
|
40 |
</source>
|
|
41 |
<body>
|
|
42 |
<commit>
|
|
43 |
<author>test</author>
|
|
44 |
<version>0:e63c23eaa88a</version>
|
|
45 |
<log>foo</log>
|
|
46 |
|
|
47 |
<files><file action="add">foo</file></files>
|
|
48 |
</commit>
|
|
49 |
</body>
|
|
50 |
<timestamp>0</timestamp>
|
|
51 |
</message>
|