Mercurial > hg-allpaths
annotate README.txt @ 3:be90faafa754
And added some formatting.
author | Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl> |
---|---|
date | Sun, 08 Nov 2015 07:49:01 +0100 |
parents | edb53477cc3f |
children | 7591d4101b93 |
rev | line source |
---|---|
0 | 1 |
2 allpaths extension | |
3 ================== | |
4 | |
5 This simple extension lets you execute commands on multiple paths. | |
6 | |
3
be90faafa754
And added some formatting.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
2
diff
changeset
|
7 For now, this is only the `push` command:: |
0 | 8 |
9 $ hg pushall | |
10 | |
3
be90faafa754
And added some formatting.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
2
diff
changeset
|
11 This will push to all paths specified in the ``[paths]`` config section. |
0 | 12 |
3
be90faafa754
And added some formatting.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
2
diff
changeset
|
13 You can also provide the name of a different section:: |
0 | 14 |
15 $ hg pushall -g publish | |
16 | |
3
be90faafa754
And added some formatting.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
2
diff
changeset
|
17 This will push to all paths specified in the ``[publish]`` config |
be90faafa754
And added some formatting.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
2
diff
changeset
|
18 section, which should look like this:: |
0 | 19 |
20 [publish] | |
21 bitbucket = ssh://hg@bitbucket.org/ludovicchabant/piecrust | |
22 github = git+ssh://git@github.com:ludovicchabant/PieCrust.git | |
23 other = ssh://my@own/server | |
24 local = /some/other/place | |
25 | |
3
be90faafa754
And added some formatting.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
2
diff
changeset
|
26 You can also provide standard ``push`` options:: |
0 | 27 |
28 $ hg pushall -b branch | |
29 |