Modify ↓
Opened 10 years ago
Closed 10 years ago
#11685 closed defect (fixed)
Wrong revision graph if [git] cached_repository = enabled
Reported by: | Jun Omae | Owned by: | Jun Omae |
---|---|---|---|
Priority: | normal | Milestone: | 1.0.2 |
Component: | plugin/git | Version: | 1.0-stable |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: |
Fix wrong revision graph for cached git repository. |
||
API Changes: | |||
Internal Changes: |
Description
If [git] cached_repository = enabled
, revision graph in log view for git repository is wrong. Trac 1.0, 1.0.1 and 1.0-stable have the issue.
The following images is shown with pygit2.
Attachments (2)
Change History (4)
by , 10 years ago
Attachment: | revgraph-cached.png added |
---|
by , 10 years ago
Attachment: | revgraph-non-cached.png added |
---|
comment:1 by , 10 years ago
Milestone: | next-stable-1.0.x → 1.0.2 |
---|---|
Owner: | set to |
Status: | new → assigned |
comment:2 by , 10 years ago
Release Notes: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Proposed changes in jomae.git@t11685.
Repository.parent_revs()
is used sinceCachedRepository.parent_revs()
is missing. Then, if non linear changesets, it returns wrong revisions. In the branch, addedCachedRepository.parent_revs()
.