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

Fix whole-file changes being attributed to the wrong commit in "git log" output #1111

Merged
merged 2 commits into from
Jun 22, 2022
Merged

Fix whole-file changes being attributed to the wrong commit in "git log" output #1111

merged 2 commits into from
Jun 22, 2022

Commits on Jun 21, 2022

  1. Allow to run tests using "cargo t"

    The test_process_calling_cmdline test only allows "cargo test" and
    "cargo tarpaulin" for running the testsuite, for "cargo t" is a
    built-in alias for "cargo test" and should be allowed, too.
    dotdash committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    43bf49b View commit details
    Browse the repository at this point in the history
  2. Fix whole-file changes being attributed to the wrong commit in "git l…

    …og" output
    
    The pending buffer for whole-file changes is currently only flushed when
    encountering a new diff header. This leads to it being carried over
    across commit boundaries in cases where multiple commits are shown. To
    fix this, we simply need to flush the buffered data on a commit
    boundary as well.
    
    Fixes #1089
    dotdash committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    6a66e41 View commit details
    Browse the repository at this point in the history