comparison: eric7/Plugins/VcsPlugins/vcsGit/Config.py
eric7/Plugins/VcsPlugins/vcsGit/Config.py
- branch
- eric7
- changeset 8312
- 800c432b34c8
- parent 7923
- 91e843545d9a
- child 8881
- 54e42bc2437a
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2014 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module defining configuration variables for the Git package. |
|
8 """ |
|
9 |
|
10 # Available protocols for the repository URL |
|
11 ConfigGitSchemes = [ |
|
12 'file', |
|
13 'ftp', |
|
14 'ftps', |
|
15 'git', |
|
16 'http', |
|
17 'https', |
|
18 'rsync', |
|
19 'ssh', |
|
20 'ssh+scp', |
|
21 ] |