author | Pradeepkumar Gayam <in3xes@gmail.com> |
Tue, 17 Aug 2010 08:38:31 +0530 | |
changeset 11940 | 106311e7740f |
parent 7438 | b80b944836ec |
permissions | -rwxr-xr-x |
7438 | 1 |
#!/bin/sh |
2 |
||
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 |
|
15 |
||
16 |
hg init src |
|
17 |
hg init cia |
|
18 |
||
19 |
cd src |
|
20 |
echo foo > foo |
|
21 |
hg ci -Amfoo |
|
22 |
||
23 |
hg push ../cia |