File tree Expand file tree Collapse file tree 2 files changed +58
-7
lines changed Expand file tree Collapse file tree 2 files changed +58
-7
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,24 @@ machines or want to clone / update a pattern of repos without having to
34
34
$ pip install --user vcspull
35
35
```
36
36
37
+ ### Developmental releases
38
+
39
+ You can test the unpublished version of vcspull before its released.
40
+
41
+ - [ pip] ( https://pip.pypa.io/en/stable/ ) :
42
+
43
+ ``` console
44
+ $ pip install --user --upgrade --pre vcspull
45
+ ```
46
+
47
+ - [ pipx] ( https://pypa.github.io/pipx/docs/ ) :
48
+
49
+ ``` console
50
+ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
51
+ ```
52
+
53
+ Then use ` vcspull@next sync [config]... ` .
54
+
37
55
## configure
38
56
39
57
add repos you want vcspull to manage to ` ~/.vcspull.yaml ` .
Original file line number Diff line number Diff line change 4
4
5
5
## Installation
6
6
7
- First, install vcspull.
8
-
9
7
For latest official version:
10
8
11
9
``` console
12
-
13
10
$ pip install --user vcspull
14
-
15
11
```
16
12
17
- Development version :
13
+ Upgrading :
18
14
19
15
``` console
16
+ $ pip install --user --user vcspull
17
+ ```
20
18
21
- $ pip install --user -e git+https://github.com/vcs-python/vcspull.git#egg=vcspull
19
+ (developmental-releases)=
22
20
23
- ```
21
+ ### Developmental releases
22
+
23
+ New versions of vcspull are published to PyPI as alpha, beta, or release candidates.
24
+ In their versions you will see notfication like ` a1 ` , ` b1 ` , and ` rc1 ` , respectively.
25
+ ` 1.10.0b4 ` would mean the 4th beta release of ` 1.10.0 ` before general availability.
26
+
27
+ - [ pip] \:
28
+
29
+ ``` console
30
+ $ pip install --user --upgrade --pre vcspull
31
+ ```
32
+
33
+ - [ pipx] \:
34
+
35
+ ``` console
36
+ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
37
+ ```
38
+
39
+ Then use ` vcspull@next sync [config]... ` .
40
+
41
+ via trunk (can break easily):
42
+
43
+ - [ pip] \:
44
+
45
+ ``` console
46
+ $ pip install --user -e git+https://github.com/vcs-python/vcspull.git#egg=vcspull
47
+ ```
48
+
49
+ - [ pipx] \:
50
+
51
+ ``` console
52
+ $ pipx install --suffix=@master 'vcspull @ git+https://github.com/vcs-python/vcspull.git@master' --force
53
+ ```
54
+
55
+ [ pip ] : https://pip.pypa.io/en/stable/
56
+ [ pipx ] : https://pypa.github.io/pipx/docs/
24
57
25
58
## Configuration
26
59
You can’t perform that action at this time.
0 commit comments