Mercurial > hg-allpaths
comparison README @ 0:6f92e4c814d1
Initial commit.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 19 Feb 2013 17:29:34 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:6f92e4c814d1 |
---|---|
1 | |
2 allpaths extension | |
3 ================== | |
4 | |
5 This simple extension lets you execute commands on multiple paths. | |
6 | |
7 For now, this is only the `push` command: | |
8 | |
9 $ hg pushall | |
10 | |
11 This will push to all paths specified in the `[paths]` config section. | |
12 | |
13 You can also provide the name of a different section: | |
14 | |
15 $ hg pushall -g publish | |
16 | |
17 This will push to all paths specified in the `[publish]` config section, which should look like this: | |
18 | |
19 [publish] | |
20 bitbucket = ssh://hg@bitbucket.org/ludovicchabant/piecrust | |
21 github = git+ssh://git@github.com:ludovicchabant/PieCrust.git | |
22 other = ssh://my@own/server | |
23 local = /some/other/place | |
24 | |
25 You can also provide standard `push` options: | |
26 | |
27 $ hg pushall -b branch | |
28 |