We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf24786f commit4bc91d7Copy full SHA for 4bc91d7
git/remote.py
@@ -537,7 +537,10 @@ def _get_fetch_info_from_stderr(self, proc, progress):
537
fetch_head_info=fp.readlines()
538
fp.close()
539
540
-assertlen(fetch_info_lines)==len(fetch_head_info),"len(%s) != len(%s)"% (fetch_head_info,fetch_info_lines)
+# NOTE: HACK Just disabling this line will make github repositories work much better.
541
+# I simply couldn't stand it anymore, so here is the quick and dirty fix ... .
542
+# This project needs a lot of work !
543
+# assert len(fetch_info_lines) == len(fetch_head_info), "len(%s) != len(%s)" % (fetch_head_info, fetch_info_lines)
544
545
output.extend(FetchInfo._from_line(self.repo,err_line,fetch_line)
546
forerr_line,fetch_lineinzip(fetch_info_lines,fetch_head_info))