src/eric7/Plugins/VcsPlugins/vcsGit/Config.py

Wed, 19 Oct 2022 13:39:16 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 19 Oct 2022 13:39:16 +0200
branch
eric7
changeset 9421
989ee2535d59
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
permissions
-rw-r--r--

Git Interface and Mercurial Interface
- added support for `git blame --ignore-revs-file` including an action to create such a skip list file
- added support for `hg annotate --skip` including an action to create a file for the commit IDs to be skipped (one per line)

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

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

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

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

eric ide

mercurial