We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b4ac6e0 + 71a19ab commit a417f59Copy full SHA for a417f59
pyproject.toml
@@ -30,7 +30,7 @@ dependencies = [
30
"tomli>=2.0.1; python_version < '3.11'",
31
"referencing>=0.33.0",
32
"rich>=13.6",
33
- "GitPython>=3.1.43",
+ "GitPython>=3.1.44",
34
]
35
classifiers = [
36
"Development Status :: 4 - Beta",
src/outpost/barbican/scm/git.py
@@ -173,7 +173,7 @@ def fetch(self) -> None:
173
if is_new_ref:
174
refspec += ":" + refspec
175
176
- fetch_infos = self._repo.remote().fetch(refspec=refspec)
+ fetch_infos = self._repo.remote().fetch(refspec=refspec, progress=GitProgressBar())
177
178
# this should never occurs
179
if len(fetch_infos) != 1:
0 commit comments