Sat, 04 Aug 2018 14:05:07 +0200
hg, HgGraftDialog: added support for the '--no-commit' flag as of Mercurial 4.7.0.
# -*- coding: utf-8 -*- # Copyright (c) 2014 - 2018 Detlev Offenbach <detlev@die-offenbachs.de> # """ Package implementing the largefiles extension support interface. """ from __future__ import unicode_literals def getDefaults(): """ Function to get the default values of the extension. @return dictionary with default values and parameter as key (dict) """ return { 'minsize': 10, # minimum size in MB 'pattern': [], # file name patterns }