@@ -102,7 +102,7 @@ - (void) walkRevisionListWithSpecifier:(PBGitRevSpecifier*)rev
102
102
if (showSign)
103
103
formatString = [formatString stringByAppendingString: @" \01 %m" ];
104
104
105
- NSMutableArray *arguments = [NSMutableArray arrayWithObjects: @" log" , @" -z" , @" --early-output " , @" -- topo-order" , @" --children" , formatString, nil ];
105
+ NSMutableArray *arguments = [NSMutableArray arrayWithObjects: @" log" , @" -z" , @" --topo-order" , @" --children" , formatString, nil ];
106
106
107
107
if (!rev)
108
108
[arguments addObject: @" HEAD" ];
@@ -124,30 +124,6 @@ - (void) walkRevisionListWithSpecifier:(PBGitRevSpecifier*)rev
124
124
if (!getline (stream, sha, ' \1 ' ))
125
125
break ;
126
126
127
- // We reached the end of some temporary output. Show what we have
128
- // until now, and then start again. The sha of the next thing is still
129
- // in this buffer. So, we use a substring of current input.
130
- if (sha[1 ] == ' i' ) // Matches 'Final output'
131
- {
132
- num = 0 ;
133
- if ([currentThread isCancelled ])
134
- break ;
135
-
136
- NSDictionary *update = [NSDictionary dictionaryWithObjectsAndKeys: currentThread, kRevListThreadKey , revisions, kRevListRevisionsKey , nil ];
137
- [self performSelectorOnMainThread: @selector (updateCommits: ) withObject: update waitUntilDone: NO ];
138
- revisions = [NSMutableArray array ];
139
-
140
- if (isGraphing)
141
- g = [[PBGitGrapher alloc ] initWithRepository: repository];
142
- revisions = [NSMutableArray array ];
143
-
144
- // If the length is < 40, then there are no commits.. quit now
145
- if (sha.length () < 40 )
146
- break ;
147
-
148
- sha = sha.substr (sha.length () - 40 , 40 );
149
- }
150
-
151
127
// From now on, 1.2 seconds
152
128
string encoding_str;
153
129
getline (stream, encoding_str, ' \1 ' );
0 commit comments