We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a23ee commit b94fb13Copy full SHA for b94fb13
ObjectiveGit/GTBranch.m
@@ -146,7 +146,7 @@ - (GTBranchType)branchType {
146
}
147
148
- (NSArray *)uniqueCommitsRelativeToBranch:(GTBranch *)otherBranch error:(NSError **)error {
149
- GTEnumerator *enumerator = [self.repository enumerateUniqueCommitsUpToOID:self.OID relativeToOID:otherBranch.OID error:error];
+ GTEnumerator *enumerator = [self.repository enumeratorForCommitsStartingAtOID:self.OID endingAtOID:otherBranch.OID error:error];
150
return [enumerator allObjectsWithError:error];
151
152
0 commit comments