From 98ea26b8d842d11afe6326f026ba15644dc40770 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Thu, 4 Jun 2009 19:19:11 -0700 Subject: [PATCH] Allow callers to reset the git config cache If commands modify the git config too rapidly we might not notice the .git/config file has been modified, as they could run in the same filesystem timestamp window and thus not cause a change on the config's mtime. This can cause repo to miss re-reading the config file after running a command. Allowing the cache to be flushed forces us to re-read the config. Signed-off-by: Shawn O. Pearce --- git_config.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/git_config.py b/git_config.py index e1e2046..2655939 100644 --- a/git_config.py +++ b/git_config.py @@ -71,6 +71,14 @@ class GitConfig(object): else: self._pickle = pickleFile + def ClearCache(self): + if os.path.exists(self._pickle): + os.remove(self._pickle) + self._cache_dict = None + self._section_dict = None + self._remotes = {} + self._branches = {} + def Has(self, name, include_defaults = True): """Return true if this configuration file has the key. """