Merge branch 'kk/revwalk-slop-too-many-commit-within-a-second'
Allow the revision "slop" code to look deeper while commits with exactly the same timestamps come next to each other (which can often happen after a large "am" and "rebase" session). * kk/revwalk-slop-too-many-commit-within-a-second: Fix revision walk for commits with the same dates
This commit is contained in:
@ -709,7 +709,7 @@ static int still_interesting(struct commit_list *src, unsigned long date, int sl
|
||||
* Does the destination list contain entries with a date
|
||||
* before the source list? Definitely _not_ done.
|
||||
*/
|
||||
if (date < src->item->date)
|
||||
if (date <= src->item->date)
|
||||
return SLOP;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user