We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b024f commit 8c85f0cCopy full SHA for 8c85f0c
CHANGES
@@ -11,6 +11,33 @@ $ pip install --user --upgrade --pre libvcs
11
12
## current - unrelased
13
14
+### What's new
15
+
16
+- `GitRepo` now accepts remotes in `__init__`
17
18
+ ```python
19
+ repo = GitRepo(
20
+ url="https://github.com/vcs-python/libvcs",
21
+ repo_dir=checkout,
22
+ remotes={
23
+ 'gitlab': 'https://gitlab.com/vcs-python/libvcs',
24
+ }
25
+ )
26
+ ```
27
28
29
30
31
32
33
+ 'gitlab': {
34
+ 'fetch': 'https://gitlab.com/vcs-python/libvcs',
35
+ 'push': 'https://gitlab.com/vcs-python/libvcs',
36
+ },
37
38
39
40
41
### Compatibility
42
43
- Python 3.7 and 3.8 dropped (#308)
0 commit comments