From 9fbae711b76a4f2fa9345f43da6d2cdedd75d6c3 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 20 Jan 2015 20:56:33 +0100 Subject: Greatly improved possible safety of Submodule.update(), which is used by default. Previously, the implementation would gladly reset new commits in submodules, and/or reset a dirty working tree. Now the new force_reset/force flag has to be specified explicitly to get back to the old behaviour. All submodule tests except for one are working. --- git/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'git/config.py') diff --git a/git/config.py b/git/config.py index ed61bf93..38dd1b44 100644 --- a/git/config.py +++ b/git/config.py @@ -546,10 +546,12 @@ class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, obje :param option: Name of the options whose value to set :param value: Value to set the option to. It must be a string or convertible - to a string""" + to a string + :return: this instance""" if not self.has_section(section): self.add_section(section) self.set(section, option, self._value_to_string(value)) + return self def rename_section(self, section, new_name): """rename the given section to new_name -- cgit v1.2.3