Fix Fetch progress bar by fvalette-ledger · Pull Request #1971 · gitpython-developers/GitPython
proc = self.repo.git.fetch( "--", self, *args, as_process=True, with_stdout=False, universal_newlines=False, v=verbose, **kwargs "--", self, *args, as_process=True, with_stdout=False, universal_newlines=True, v=verbose, **kwargs ) res = self._get_fetch_info_from_stderr(proc, progress, kill_after_timeout=kill_after_timeout) if hasattr(self.repo.odb, "update_cache"):
proc = self.repo.git.pull( "--", self, refspec, with_stdout=False, as_process=True, universal_newlines=False, v=True, **kwargs "--", self, refspec, with_stdout=False, as_process=True, universal_newlines=True, v=True, **kwargs ) res = self._get_fetch_info_from_stderr(proc, progress, kill_after_timeout=kill_after_timeout) if hasattr(self.repo.odb, "update_cache"):