comparison: eric6/Plugins/VcsPlugins/vcsGit/Config.py
eric6/Plugins/VcsPlugins/vcsGit/Config.py
- changeset 6942
- 2602857055c5
- parent 6645
- ad476851d7e0
- child 7229
- 53054eb5b15a
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2014 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module defining configuration variables for the Git package. |
|
8 """ |
|
9 |
|
10 from __future__ import unicode_literals |
|
11 |
|
12 # Available protocols for the repository URL |
|
13 ConfigGitSchemes = [ |
|
14 'file', |
|
15 'ftp', |
|
16 'ftps', |
|
17 'git', |
|
18 'http', |
|
19 'https', |
|
20 'rsync', |
|
21 'ssh', |
|
22 'ssh+scp', |
|
23 ] |