There was an error while loading. Please reload this page.
1 parent 1485103 commit 3e79604Copy full SHA for 3e79604
1 file changed
git/remote.py
@@ -555,7 +555,7 @@ def _get_fetch_info_from_stderr(self, proc, progress):
555
line = line.decode(defenc)
556
line = line.rstrip()
557
for pline in progress_handler(line):
558
- if line.startswith('fatal:'):
+ if line.startswith('fatal:') or line.startswith('error:'):
559
raise GitCommandError(("Error when fetching: %s" % line,), 2)
560
# END handle special messages
561
for cmd in cmds:
0 commit comments