Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/git
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.52.0.vfs.0.1
Choose a base ref
...
head repository: microsoft/git
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.52.0.vfs.0.2
Choose a head ref
  • 4 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 20, 2025

  1. Configuration menu
    Copy the full SHA
    d50fc42 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65222a5 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2025

  1. Fix regression from batch object downloads (#824)

    This is a fix for a performance regression introduced by #822. That
    change updated the packfile installation process to call a different
    packfile installation method after some upstream changes to the packfile
    data structures.
    
    However, while I thought I read the new packfile methods as including a
    modification of the MRU cache, it apparently does not fully install the
    packfile in the list.
    
    This manifests in something like `git checkout` where the missing blobs
    are queued for download, downloaded in blob packfiles, and then the
    checkout process continues. During the process of writing the data to
    the worktree, the "updating files" progress indicator slows to a crawl
    because it was "missing" the blobs and then downloaded them on-demand.
    
    This fixes the issue by being less fancy about packfiles and using
    `packfile_store_reprepare()` to just reset the full packfile list. This
    is more future-proof and isn't very expensive compared to the packfile
    download.
    
    I augmented a test to include tracing that shows a necessary blob is
    queued for packfile download and is not later downloaded via an
    immediate request. Without the code change, that test would fail.
    
    * [X] This change only applies to interactions with Azure DevOps and the
    GVFS Protocol.
    dscho authored Nov 21, 2025
    Configuration menu
    Copy the full SHA
    f6415e4 View commit details
    Browse the repository at this point in the history
  2. fixup! release: create initial Windows installer build workflow

    build-git-installers: prepare for the big split of mingw-w64-git
    
    In git-for-windows/MINGW-packages#172, the
    `mingw-w64-git` package was split into multiple packages, with the
    new primary package as Git for Windows is concerned being the
    `mingw-w64-git-for-windows-addons` one.
    
    Accommodate for that change by simply adding (almost) all of the packages
    that were built to the command-line via `--pkg` options, instead of
    hardcoding the `mingw-w64-git` and `mingw-w64-git-doc-html` one.
    
    Signed-off-by: Johannes Schindelin <[email protected]>
    dscho committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    4e6a770 View commit details
    Browse the repository at this point in the history
Loading