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