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.
2 parents0900a51 +4a87001 commita1a5976Copy full SHA for a1a5976
git/util.py
@@ -165,8 +165,8 @@ class RemoteProgress(object):
165
Handler providing an interface to parse progress information emitted by git-push
166
and git-fetch and to dispatch callbacks allowing subclasses to react to the progress.
167
"""
168
-_num_op_codes=8
169
-BEGIN,END,COUNTING,COMPRESSING,WRITING,RECEIVING,RESOLVING,FINDING_SOURCES= \
+_num_op_codes=9
+BEGIN,END,COUNTING,COMPRESSING,WRITING,RECEIVING,RESOLVING,FINDING_SOURCES,CHECKING_OUT= \
170
[1<<xforxinrange(_num_op_codes)]
171
STAGE_MASK=BEGIN|END
172
OP_MASK=~STAGE_MASK
@@ -231,6 +231,8 @@ def _parse_progress_line(self, line):
231
op_code|=self.RESOLVING
232
elifop_name=='Finding sources':
233
op_code|=self.FINDING_SOURCES
234
+elifop_name=='Checking out files':
235
+op_code|=self.CHECKING_OUT
236
else:
237
# Note: On windows it can happen that partial lines are sent
238
# Hence we get something like "CompreReceiving objects", which is