Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rename detection & async filling for file revlog #2589

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

naseschwarz
Copy link
Contributor

This is an initial draft for an update to #1881. I've rebased onto the current master, connected the output path, fixed some first issues and made clippy happy.

There's still a lot to do, but this should already work for testing the UI.

This Pull Request fixes/closes #{issue_num}.

It changes the following:

I followed the checklist:

  • I added unittests
  • I ran make check without errors
  • I tested the overall application
  • I added an appropriate item to the changelog

@naseschwarz naseschwarz changed the title Add rename-detection & live updates for file revlog Add rename detection & live updates for file revlog Mar 31, 2025
naseschwarz

This comment was marked as resolved.

@naseschwarz naseschwarz force-pushed the rename-detection.ja.rebased branch 2 times, most recently from 877fbf9 to c9d5b5c Compare March 31, 2025 23:07
@naseschwarz naseschwarz changed the title Add rename detection & live updates for file revlog Add rename detection & async filling for file revlog Mar 31, 2025
@naseschwarz
Copy link
Contributor Author

naseschwarz commented Apr 1, 2025

The current algorithm does not correctly deal with renames in branches:

git init
echo a > a
git add a
git commit -m '1'
git mv a b
git commit -m 'a -> b'
git checkout main~ -b funky-branch
echo some-line >> a
git add a
git commit -m '2'
git checkout -
git mv b a
git commit -m 'b -> a'
git merge --no-ff funky-branch

File revlog of gitui in master shows all five commits, with rename detection, the third commit adding "some-line" to "a" is missed.

git log --follow a finds all commits (and skips the merge commit, while gitui includes it):

image

@extrawurst: I would argue that until the issue missing an obvious change to a file is fixed, we either should abstain from merging this or we should make this feature optional. Rename following can at most be done heuristically anyhow and I'd suggest that it should always be optional, even if the issue above would be resolved.

It should be straightforward to resolve this with a graph-aware log walker, though.

(Also, have not checked, just a note for myself: Currently, the log walker orders commit by time. It should use topological ordering instead.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants