Plugins/VcsPlugins/vcsGit/Config.py

Sun, 31 Dec 2017 16:52:09 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 31 Dec 2017 16:52:09 +0100
changeset 6048
82ad8ec9548c
parent 6020
baf6da1ae288
child 6645
ad476851d7e0
permissions
-rw-r--r--

Updated copyright for 2018.

# -*- coding: utf-8 -*-

# Copyright (c) 2014 - 2018 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module defining configuration variables for the Git package.
"""

from __future__ import unicode_literals

# Available protocols for the repository URL
ConfigGitSchemes = [
    'file',
    'ftp',
    'ftps',
    'git',
    'http',
    'https',
    'rsync',
    'ssh',
    'ssh+scp',
]

eric ide

mercurial