Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jgit-dev] Problem with PlotCommitList

I recently extended EGit History view to show all branches.
Therefore I simply added all branches by calling SWTWalk.markStart for the related commits.
 
It seems that the lanes are not assigned correctly if the commit graph has multiple roots (see also https://bugs.eclipse.org/bugs/show_bug.cgi?id=323383)).
 
Same problem occurs when displaying with Glog.
Can be reproduced with a very simple commit graph:
 
Given
 
C3  C4
|  /
C2
|
C1
 
the rendering result is:
 
C4
|
C3
|
C2
|
C1
 
Is there additional configuration needed to handle multiple roots?
 
 

Back to the top