Show More
@@ -1,23 +1,51 | |||
|
1 | #!/bin/sh | |
|
1 | Test the CIA extension | |
|
2 | 2 | |
|
3 | cat >> $HGRCPATH <<EOF | |
|
4 | [extensions] | |
|
5 | hgcia= | |
|
6 | ||
|
7 | [hooks] | |
|
8 | changegroup.cia = python:hgext.hgcia.hook | |
|
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 | |
|
9 | 15 | |
|
10 | [cia] | |
|
11 | user = testuser | |
|
12 | project = testproject | |
|
13 | test = True | |
|
14 | EOF | |
|
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 | |
|
15 | 29 | |
|
16 | hg init src | |
|
17 | hg init cia | |
|
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> | |
|
18 | 46 | |
|
19 | cd src | |
|
20 | echo foo > foo | |
|
21 | hg ci -Amfoo | |
|
22 | ||
|
23 | hg push ../cia | |
|
47 | <files><file action="add">foo</file></files> | |
|
48 | </commit> | |
|
49 | </body> | |
|
50 | <timestamp>0</timestamp> | |
|
51 | </message> |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now