Skip to content

Conversation

@dscho
Copy link
Member

@dscho dscho commented Nov 12, 2025

The usual PR!

PhilipOakley and others added 30 commits November 12, 2025 19:18
On LLP64 systems, such as Windows, the size of `long`, `int`, etc. is
only 32 bits (for backward compatibility). Git's use of `unsigned long`
for file memory sizes in many places, rather than size_t, limits the
handling of large files on LLP64 systems (commonly given as `>4GB`).

Provide a minimum test for handling a >4GB file. The `hash-object`
command, with the  `--literally` and without `-w` option avoids
writing the object, either loose or packed. This avoids the code paths
hitting the `bigFileThreshold` config test code, the zlib code, and the
pack code.

Subsequent patches will walk the test's call chain, converting types to
`size_t` (which is larger in LLP64 data models) where appropriate.

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
Continue walking the code path for the >4GB `hash-object --literally`
test. The `hash_object_file_literally()` function internally uses both
`hash_object_file()` and `write_object_file_prepare()`. Both function
signatures use `unsigned long` rather than `size_t` for the mem buffer
sizes. Use `size_t` instead, for LLP64 compatibility.

While at it, convert those function's object's header buffer length to
`size_t` for consistency. The value is already upcast to `uintmax_t` for
print format compatibility.

Note: The hash-object test still does not pass. A subsequent commit
continues to walk the call tree's lower level hash functions to identify
further fixes.

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
Correct some wording and inform users regarding the Visual Studio
changes (from V16.6) to the default generator.

Subsequent commits ensure that Git for Windows can be directly
opened in modern Visual Studio without needing special configuration
of the CMakeLists settings.

It appeares that internally Visual Studio creates it's own version of the
.sln file (etc.) for extension tools that expect them.

The large number of references below document the shifting of Visual Studio
default and CMake setting options.

refs: https://docs.microsoft.com/en-us/search/?scope=C%2B%2B&view=msvc-150&terms=Ninja

1. https://docs.microsoft.com/en-us/cpp/linux/cmake-linux-configure?view=msvc-160
(note the linux bit)
 "In Visual Studio 2019 version 16.6 or later ***, Ninja is the default
generator for configurations targeting a remote system or WSL. For more
information, see this post on the C++ Team Blog
[https://devblogs.microsoft.com/cppblog/linux-development-with-visual-studio-first-class-support-for-gdbserver-improved-build-times-with-ninja-and-updates-to-the-connection-manager/].

For more information about these settings, see CMakeSettings.json reference
[https://docs.microsoft.com/en-us/cpp/build/cmakesettings-reference?view=msvc-160]."

2. https://docs.microsoft.com/en-us/cpp/build/cmake-presets-vs?view=msvc-160
"CMake supports two files that allow users to specify common configure,
build, and test options and share them with others: CMakePresets.json
and CMakeUserPresets.json."

" Both files are supported in Visual Studio 2019 version 16.10 or later.
***"
3. https://devblogs.microsoft.com/cppblog/linux-development-with-visual-studio-first-class-support-for-gdbserver-improved-build-times-with-ninja-and-updates-to-the-connection-manager/
" Ninja has been the default generator (underlying build system) for
CMake configurations targeting Windows for some time***, but in Visual
Studio 2019 version 16.6 Preview 3*** we added support for Ninja on Linux."

4. https://docs.microsoft.com/en-us/cpp/build/cmakesettings-reference?view=msvc-160
" `generator`: specifies CMake generator to use for this configuration.
May be one of:

    Visual Studio 2019 only:
        Visual Studio 16 2019
        Visual Studio 16 2019 Win64
        Visual Studio 16 2019 ARM

    Visual Studio 2017 and later:
        Visual Studio 15 2017
        Visual Studio 15 2017 Win64
        Visual Studio 15 2017 ARM
        Visual Studio 14 2015
        Visual Studio 14 2015 Win64
        Visual Studio 14 2015 ARM
        Unix Makefiles
        Ninja

Because Ninja is designed for fast build speeds instead of flexibility
and function, it is set as the default. However, some CMake projects may
be unable to correctly build using Ninja. If this occurs, you can
instruct CMake to generate Visual Studio projects instead.

To specify a Visual Studio generator in Visual Studio 2017, open the
settings editor from the main menu by choosing CMake | Change CMake
Settings. Delete "Ninja" and type "V". This activates IntelliSense,
which enables you to choose the generator you want."

"To specify a Visual Studio generator in Visual Studio 2019, right-click
on the CMakeLists.txt file in Solution Explorer and choose CMake
Settings for project > Show Advanced Settings > CMake Generator.

When the active configuration specifies a Visual Studio generator, by
default MSBuild.exe is invoked with` -m -v:minimal` arguments."

5. https://docs.microsoft.com/en-us/cpp/build/cmake-presets-vs?view=msvc-160#enable-cmakepresetsjson-integration-in-visual-studio-2019
"Enable CMakePresets.json integration in Visual Studio 2019

CMakePresets.json integration isn't enabled by default in Visual Studio
2019. You can enable it for all CMake projects in Tools > Options >
CMake > General: (tick a box)" ... see more.

6. https://docs.microsoft.com/en-us/cpp/build/cmakesettings-reference?view=msvc-140
(whichever v140 is..)
"CMake projects are supported in Visual Studio 2017 and later."

7. https://docs.microsoft.com/en-us/cpp/overview/what-s-new-for-cpp-2017?view=msvc-150
"Support added for the CMake Ninja generator."

8. https://docs.microsoft.com/en-us/cpp/overview/what-s-new-for-cpp-2017?view=msvc-150#cmake-support-via-open-folder
"CMake support via Open Folder
Visual Studio 2017 introduces support for using CMake projects without
converting to MSBuild project files (.vcxproj). For more information,
see CMake projects in Visual
Studio[https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio?view=msvc-150].
Opening CMake projects with Open Folder automatically configures the
environment for C++ editing, building, and debugging." ... +more!

9. https://docs.microsoft.com/en-us/cpp/build/cmake-presets-vs?view=msvc-160#supported-cmake-and-cmakepresetsjson-versions
"Visual Studio reads and evaluates CMakePresets.json and
CMakeUserPresets.json itself and doesn't invoke CMake directly with the
--preset option. So, CMake version 3.20 or later isn't strictly required
when you're building with CMakePresets.json inside Visual Studio. We
recommend using CMake version 3.14 or later."

10. https://docs.microsoft.com/en-us/cpp/build/cmake-presets-vs?view=msvc-160#enable-cmakepresetsjson-integration-in-visual-studio-2019
"If you don't want to enable CMakePresets.json integration for all CMake
projects, you can enable CMakePresets.json integration for a single
CMake project by adding a CMakePresets.json file to the root of the open
folder. You must close and reopen the folder in Visual Studio to
activate the integration.

11. https://docs.microsoft.com/en-us/cpp/build/cmake-presets-vs?view=msvc-160#default-configure-presets
***(doesn't actually say which version..)
"Default Configure Presets
If no CMakePresets.json or CMakeUserPresets.json file exists, or if
CMakePresets.json or CMakeUserPresets.json is invalid, Visual Studio
will fall back*** on the following default Configure Presets:

Windows example
JSON
{
  "name": "windows-default",
  "displayName": "Windows x64 Debug",
  "description": "Sets Ninja generator, compilers, x64 architecture,
build and install directory, debug build type",
  "generator": "Ninja",
  "binaryDir": "${sourceDir}/out/build/${presetName}",
  "architecture": {
    "value": "x64",
    "strategy": "external"
  },
  "cacheVariables": {
    "CMAKE_BUILD_TYPE": "Debug",
    "CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
  },
  "vendor": {
    "microsoft.com/VisualStudioSettings/CMake/1.0": {
      "hostOS": [ "Windows" ]
    }
  }
},
"

Signed-off-by: Philip Oakley <[email protected]>
Continue walking the code path for the >4GB `hash-object --literally`
test to the hash algorithm step for LLP64 systems.

This patch lets the SHA1DC code use `size_t`, making it compatible with
LLP64 data models (as used e.g. by Windows).

The interested reader of this patch will note that we adjust the
signature of the `git_SHA1DCUpdate()` function without updating _any_
call site. This certainly puzzled at least one reviewer already, so here
is an explanation:

This function is never called directly, but always via the macro
`platform_SHA1_Update`, which is usually called via the macro
`git_SHA1_Update`. However, we never call `git_SHA1_Update()` directly
in `struct git_hash_algo`. Instead, we call `git_hash_sha1_update()`,
which is defined thusly:

    static void git_hash_sha1_update(git_hash_ctx *ctx,
                                     const void *data, size_t len)
    {
        git_SHA1_Update(&ctx->sha1, data, len);
    }

i.e. it contains an implicit downcast from `size_t` to `unsigned long`
(before this here patch). With this patch, there is no downcast anymore.

With this patch, finally, the t1007-hash-object.sh "files over 4GB hash
literally" test case is fixed.

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
The CMakeSettings.json file is tool generated. Developers may track it
should they provide additional settings.

Signed-off-by: Philip Oakley <[email protected]>
Just like the `hash-object --literally` code path, the `--stdin` code
path also needs to use `size_t` instead of `unsigned long` to represent
memory sizes, otherwise it would cause problems on platforms using the
LLP64 data model (such as Windows).

To limit the scope of the test case, the object is explicitly not
written to the object store, nor are any filters applied.

The `big` file from the previous test case is reused to save setup time;
To avoid relying on that side effect, it is generated if it does not
exist (e.g. when running via `sh t1007-*.sh --long --run=1,41`).

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
The intention of this change is to align with how the top-level git
`Makefile` defines its own test target (which also internally calls
`$(MAKE) -C t/ all`). This change also ensures the consistency of
`make -C contrib/subtree test` with other testing in CI executions
(which rely on `$DEFAULT_TEST_TARGET` being defined as `prove`).

Signed-off-by: Victoria Dye <[email protected]>
In Git-for-Windows, work on using ARM64 has progressed. The
commit 2d94b77 (cmake: allow building for Windows/ARM64, 2020-12-04)
failed to notice that /compat/vcbuild/vcpkg_install.bat will default to
using the "x64-windows" architecture for the vcpkg installation if not set,
but CMake is not told of this default. Commit 635b6d9 (vcbuild: install
ARM64 dependencies when building ARM64 binaries, 2020-01-31) later updated
vcpkg_install.bat to accept an arch (%1) parameter, but retained the default.

This default is neccessary for the use case where the project directory is
opened directly in Visual Studio, which will find and build a CMakeLists.txt
file without any parameters, thus expecting use of the default setting.

Also Visual studio will generate internal .sln solution and .vcxproj project
files needed for some extension tools. Inform users of the additional
.sln/.vcxproj generation.

** How to test:
 rm -rf '.vs' # remove old visual studio settings
 rm -rf 'compat/vcbuild/vcpkg' # remove any vcpkg downloads
 rm -rf 'contrib/buildsystems/out' # remove builds & CMake artifacts
 with a fresh Visual Studio Community Edition, File>>Open>>(git *folder*)
   to load the project (which will take some time!).
 check for successful compilation.
The implicit .sln (etc.) are in the hidden .vs directory created by
Visual Studio.

Signed-off-by: Philip Oakley <[email protected]>
To complement the `--stdin` and `--literally` test cases that verify
that we can hash files larger than 4GB on 64-bit platforms using the
LLP64 data model, here is a test case that exercises `hash-object`
_without_ any options.

Just as before, we use the `big` file from the previous test case if it
exists to save on setup time, otherwise generate it.

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
This adds support for a new http.sslAutoClientCert config value.

In cURL 7.77 or later the schannel backend does not automatically send
client certificates from the Windows Certificate Store anymore.

This config value is only used if http.sslBackend is set to "schannel",
and can be used to opt in to the old behavior and force cURL to send
client certificates.

This fixes #3292

Signed-off-by: Pascal Muller <[email protected]>
Because `git subtree` (unlike most other `contrib` modules) is included as
part of the standard release of Git for Windows, its stability should be
verified as consistently as it is for the rest of git. By including the
`git subtree` tests in the CI workflow, these tests are as much of a gate to
merging and indicator of stability as the standard test suite.

Signed-off-by: Victoria Dye <[email protected]>
Ensure key CMake option values are part of the CMake output to
facilitate user support when tool updates impact the wider CMake
actions, particularly ongoing 'improvements' in Visual Studio.

These CMake displays perform the same function as the build-options.txt
provided in the main Git for Windows. CMake is already chatty.
The setting of CMAKE_EXPORT_COMPILE_COMMANDS is also reported.

Include the environment's CMAKE_EXPORT_COMPILE_COMMANDS value which
may have been propogated to CMake's internal value.

Testing the CMAKE_EXPORT_COMPILE_COMMANDS processing can be difficult
in the Visual Studio environment, as it may be cached in many places.
The 'environment' may include the OS, the user shell, CMake's
own environment, along with the Visual Studio presets and caches.

See previous commit for arefacts that need removing for a clean test.

Signed-off-by: Philip Oakley <[email protected]>
In Git for Windows, `has_symlinks` is set to 0 by default. Therefore, we
need to parse the config setting `core.symlinks` to know if it has been
set to `true`. In `git init`, we must do that before copying the
templates because they might contain symbolic links.

Even if the support for symbolic links on Windows has not made it to
upstream Git yet, we really should make sure that all the `core.*`
settings are parsed before proceeding, as they might very well change
the behavior of `git init` in a way the user intended.

This fixes #3414

Signed-off-by: Johannes Schindelin <[email protected]>
To verify that the `clean` side of the `clean`/`smudge` filter code is
correct with regards to LLP64 (read: to ensure that `size_t` is used
instead of `unsigned long`), here is a test case using a trivial filter,
specifically _not_ writing anything to the object store to limit the
scope of the test case.

As in previous commits, the `big` file from previous test cases is
reused if available, to save setup time, otherwise re-generated.

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
In the case of Git for Windows (say, in a Git Bash window) running in a
Windows Subsystem for Linux (WSL) directory, the GetNamedSecurityInfoW()
call in is_path_owned_By_current_side() returns an error code other than
ERROR_SUCCESS. This is consistent behavior across this boundary.

In these cases, the owner would always be different because the WSL
owner is a different entity than the Windows user.

The change here is to suppress the error message that looks like this:

  error: failed to get owner for '//wsl.localhost/...' (1)

Before this change, this warning happens for every Git command,
regardless of whether the directory is marked with safe.directory.

Signed-off-by: Derrick Stolee <[email protected]>
For Windows builds >= 15063 set $env:TERM to "xterm-256color" instead of
"cygwin" because they have a more capable console system that supports
this. Also set $env:COLORTERM="truecolor" if unset.

$env:TERM is initialized so that ANSI colors in color.c work, see
29a3963 (Win32: patch Windows environment on startup, 2012-01-15).

See #3629 regarding problems caused by always setting
$env:TERM="cygwin".

This is the same heuristic used by the Cygwin runtime.

Signed-off-by: Rafael Kitover <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
This compile-time option allows to ask Git to load libcurl dynamically
at runtime.

Together with a follow-up patch that optionally overrides the file name
depending on the `http.sslBackend` setting, this kicks open the door for
installing multiple libcurl flavors side by side, and load the one
corresponding to the (runtime-)configured SSL/TLS backend.

Signed-off-by: Johannes Schindelin <[email protected]>
This implements the Windows-specific support code, because everything is
slightly different on Windows, even loading shared libraries.

Note: I specifically do _not_ use the code from
`compat/win32/lazyload.h` here because that code is optimized for
loading individual functions from various system DLLs, while we
specifically want to load _many_ functions from _one_ DLL here, and
distinctly not a system DLL (we expect libcurl to be located outside
`C:\Windows\system32`, something `INIT_PROC_ADDR` refuses to work with).
Also, the `curl_easy_getinfo()`/`curl_easy_setopt()` functions are
declared as vararg functions, which `lazyload.h` cannot handle. Finally,
we are about to optionally override the exact file name that is to be
loaded, which is a goal contrary to `lazyload.h`'s design.

Signed-off-by: Johannes Schindelin <[email protected]>
The previous commits introduced a compile-time option to load libcurl
lazily, but it uses the hard-coded name "libcurl-4.dll" (or equivalent
on platforms other than Windows).

To allow for installing multiple libcurl flavors side by side, where
each supports one specific SSL/TLS backend, let's first look whether
`libcurl-<backend>-4.dll` exists, and only use `libcurl-4.dll` as a fall
back.

That will allow us to ship with a libcurl by default that only supports
the Secure Channel backend for the `https://` protocol. This libcurl
won't suffer from any dependency problem when upgrading OpenSSL to a new
major version (which will change the DLL name, and hence break every
program and library that depends on it).

This is crucial because Git for Windows relies on libcurl to keep
working when building and deploying a new OpenSSL package because that
library is used by `git fetch` and `git clone`.

Note that this feature is by no means specific to Windows. On Ubuntu,
for example, a `git` built using `LAZY_LOAD_LIBCURL` will use
`libcurl.so.4` for `http.sslbackend=openssl` and `libcurl-gnutls.so.4`
for `http.sslbackend=gnutls`.

Signed-off-by: Johannes Schindelin <[email protected]>
NtQueryObject under Wine can return a success but fill out no name.
In those situations, Wine will set Buffer to NULL, and set result to
the sizeof(OBJECT_NAME_INFORMATION).

Running a command such as

echo "$(git.exe --version 2>/dev/null)"

will crash due to a NULL pointer dereference when the code attempts to
null terminate the buffer, although, weirdly, removing the subshell or
redirecting stdout to a file will not trigger the crash.

Code has been added to also check Buffer and Length to ensure the check
is as robust as possible due to the current behavior being fragile at
best, and could potentially change in the future

This code is based on the behavior of NtQueryObject under wine and
reactos.

Signed-off-by: Christopher Degawa <[email protected]>
Atomic append on windows is only supported on local disk files, and it may
cause errors in other situations, e.g. network file system. If that is the
case, this config option should be used to turn atomic append off.

Co-Authored-By: Johannes Schindelin <[email protected]>
Signed-off-by: 孙卓识 <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
From the documentation of said setting:

	This boolean will enable fsync() when writing object files.

	This is a total waste of time and effort on a filesystem that
	orders data writes properly, but can be useful for filesystems
	that do not use journalling (traditional UNIX filesystems) or
	that only journal metadata and not file contents (OS X’s HFS+,
	or Linux ext3 with "data=writeback").

The most common file system on Windows (NTFS) does not guarantee that
order, therefore a sudden loss of power (or any other event causing an
unclean shutdown) would cause corrupt files (i.e. files filled with
NULs). Therefore we need to change the default.

Note that the documentation makes it sound as if this causes really bad
performance. In reality, writing loose objects is something that is done
only rarely, and only a handful of files at a time.

Signed-off-by: Johannes Schindelin <[email protected]>
Whith Windows 2000, Microsoft introduced a flag to the PE header to mark executables as
"terminal server aware". Windows terminal servers provide a redirected Windows directory and
redirected registry hives when launching legacy applications without this flag set. Since we
do not use any INI files in the Windows directory and don't write to the registry, we don't
need  this additional preparation. Telling the OS that we don't need this should provide
slightly improved startup times in terminal server environments.

When building for supported Windows Versions with MSVC the /TSAWARE linker flag is
automatically set, but MinGW requires us to set the --tsaware flag manually.

This partially addresses #3935.

Signed-off-by: Matthias Aßhauer <[email protected]>
Add FileVersion, which is a required field
As not all required fields were present, none were being included
Fixes #4090

Signed-off-by: Kiel Hurley <[email protected]>
In f9b7573 (repository: free fields before overwriting them,
2017-09-05), Git was taught to release memory before overwriting it, but
357a03e (repository.c: move env-related setup code back to
environment.c, 2018-03-03) changed the code so that it would not
_always_ be overwritten.

As a consequence, the `commondir` attribute would point to
already-free()d memory.

This seems not to cause problems in core Git, but there are add-on
patches in Git for Windows where the `commondir` attribute is
subsequently used and causing invalid memory accesses e.g. in setups
containing old-style submodules (i.e. the ones with a `.git` directory
within theirs worktrees) that have `commondir` configured.

This fixes #4083.

Signed-off-by: Andrey Zabavnikov <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
It is merely a historical wart that, say, `git-commit` exists in the
`libexec/git-core/` directory, a tribute to the original idea to let Git
be essentially a bunch of Unix shell scripts revolving around very few
"plumbing" (AKA low-level) commands.

Git has evolved a lot from there. These days, most of Git's
functionality is contained within the `git` executable, in the form of
"built-in" commands.

To accommodate for scripts that use the "dashed" form of Git commands,
even today, Git provides hard-links that make the `git` executable
available as, say, `git-commit`, just in case that an old script has not
been updated to invoke `git commit`.

Those hard-links do not come cheap: they take about half a minute for
every build of Git on Windows, they are mistaken for taking up huge
amounts of space by some Windows Explorer versions that do not
understand hard-links, and therefore many a "bug" report had to be
addressed.

The "dashed form" has been officially deprecated in Git version 1.5.4,
which was released on February 2nd, 2008, i.e. a very long time ago.
This deprecation was never finalized by skipping these hard-links, but
we can start the process now, in Git for Windows.

Signed-off-by: Johannes Schindelin <[email protected]>
This will help with Git for Windows' maintenance going forward: It
allows Git for Windows to switch its primary libcurl to a variant
without the OpenSSL backend, while still loading an alternate when
setting `http.sslBackend = openssl`.

This is necessary to avoid maintenance headaches with upgrading OpenSSL:
its major version name is encoded in the shared library's file name and
hence major version updates (temporarily) break libraries that are
linked against the OpenSSL library.

Signed-off-by: Johannes Schindelin <[email protected]>
In Git for Windows v2.39.0, we fixed a regression where `git.exe` would
no longer work in Windows Nano Server (frequently used in Docker
containers).

This GitHub workflow can be used to verify manually that the Git/Scalar
executables work in Nano Server.

Signed-off-by: Johannes Schindelin <[email protected]>
When running Git for Windows on a remote APFS filesystem, it would
appear that the `mingw_open_append()`/`write()` combination would fail
almost exactly like on some CIFS-mounted shares as had been reported in
#2753, albeit with a
different `errno` value.

Let's handle that `errno` value just the same, by suggesting to set
`windows.appendAtomically=false`.

Signed-off-by: David Lomas <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
dscho and others added 18 commits November 12, 2025 19:18
These are Git for Windows' Git GUI and gitk patches. We will have to
decide at some point what to do about them, but that's a little lower
priority (as Git GUI seems to be unmaintained for the time being, and
the gitk maintainer keeps a very low profile on the Git mailing list,
too).

Signed-off-by: Johannes Schindelin <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
This was pull request #1645 from ZCube/master

Support windows container.

Signed-off-by: Johannes Schindelin <[email protected]>
With this patch, Git for Windows works as intended on mounted APFS
volumes (where renaming read-only files would fail).

Signed-off-by: Johannes Schindelin <[email protected]>
Git for Windows accepts pull requests; Core Git does not. Therefore we
need to adjust the template (because it only matches core Git's
project management style, not ours).

Also: direct Git for Windows enhancements to their contributions page,
space out the text for easy reading, and clarify that the mailing list
is plain text, not HTML.

Signed-off-by: Philip Oakley <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
Specify symlink type in .gitattributes
This is the recommended way on GitHub to describe policies revolving around
security issues and about supported versions.

Helped-by: Sven Strickroth <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
This patch introduces support to set special NTFS attributes that are
interpreted by the Windows Subsystem for Linux as file mode bits, UID
and GID.

Signed-off-by: Johannes Schindelin <[email protected]>
Handle Ctrl+C in Git Bash nicely

Signed-off-by: Johannes Schindelin <[email protected]>
Switch to batched fsync by default
A fix for calling `vim` in Windows Terminal caused a regression and was
reverted. We partially un-revert this, to get the fix again.

Signed-off-by: Johannes Schindelin <[email protected]>
This topic branch re-adds the deprecated --stdin/-z options to `git
reset`. Those patches were overridden by a different set of options in
the upstream Git project before we could propose `--stdin`.

We offered this in MinGit to applications that wanted a safer way to
pass lots of pathspecs to Git, and these applications will need to be
adjusted.

Instead of `--stdin`, `--pathspec-from-file=-` should be used, and
instead of `-z`, `--pathspec-file-nul`.

Signed-off-by: Johannes Schindelin <[email protected]>
Originally introduced as `core.useBuiltinFSMonitor` in Git for Windows
and developed, improved and stabilized there, the built-in FSMonitor
only made it into upstream Git (after unnecessarily long hemming and
hawing and throwing overly perfectionist style review sticks into the
spokes) as `core.fsmonitor = true`.

In Git for Windows, with this topic branch, we re-introduce the
now-obsolete config setting, with warnings suggesting to existing users
how to switch to the new config setting, with the intention to
ultimately drop the patch at some stage.

Signed-off-by: Johannes Schindelin <[email protected]>
Start monitoring updates of Git for Windows' component in the open
Add a README.md for GitHub goodness.

Signed-off-by: Johannes Schindelin <[email protected]>
@dscho dscho self-assigned this Nov 12, 2025
@dscho
Copy link
Member Author

dscho commented Nov 12, 2025

Range-diff relative to main
  • 1: 82fbb8a = 1: 335f11f sideband: mask control characters

  • 2: 84365bd = 2: cc9009b sideband: introduce an "escape hatch" to allow control characters

  • 3: 5dffc5c = 3: d6defa2 sideband: do allow ANSI color sequences by default

  • 4: 66c6d24 = 4: 867cdbf unix-socket: avoid leak when initialization fails

  • 5: 28fb36f = 5: 9bbf899 grep: prevent ^$ false match at end of file

  • 10: 0916e0f = 6: 5098cc8 t9350: point out that refs are not updated correctly

  • 12: 46dbcdc = 7: d0e98ff transport-helper: add trailing --

  • 14: 41d5c84 = 8: b665ff2 remote-helper: check helper status after import/export

  • 15: 40f37d3 = 9: 801c8b3 mingw: demonstrate a problem with certain absolute paths

  • 18: 791eae6 = 10: 0fe17e1 Always auto-gc after calling a fast-import transport

  • 19: 5fa2352 = 11: 6b0b629 mingw: allow absolute paths without drive prefix

  • 6: 1da774c = 12: 2a08457 mingw: include the Python parts in the build

  • 7: 51491a2 = 13: 8df6373 win32/pthread: avoid name clashes with winpthread

  • 8: e5168a0 = 14: c6a34ed git-compat-util: avoid redeclaring _DEFAULT_SOURCE

  • 9: ee7afe0 = 15: 2b32869 Import the source code of mimalloc v2.2.4

  • 11: b3a03a9 = 16: abae31b mimalloc: adjust for building inside Git

  • 39: 4eaba76 = 17: 4ffca90 mingw: demonstrate a git add issue with NTFS junctions

  • 13: d9d1a97 = 18: 6055135 mimalloc: offer a build-time option to enable it

  • 16: ba13b9b = 19: fffb2f0 clean: do not traverse mount points

  • 42: d94bd7f = 20: 3d91f55 strbuf_realpath(): use platform-dependent API if available

  • 17: 918bef9 = 21: 3b9347d mingw: use mimalloc

  • 20: 8b905e6 = 22: ac94656 clean: remove mount points when possible

  • 21: c623ade = 23: f0873ab transport: optionally disable side-band-64k

  • 22: 413f90e = 24: c504a6c mingw: do resolve symlinks in getcwd()

  • 23: 58614a6 = 25: 8d14f4c mingw: fix fatal error working on mapped network drives on Windows

  • 24: e6d8c03 = 26: 47f657a clink.pl: fix MSVC compile script to handle libcurl-d.lib

  • 46: 9abc366 = 27: 4c0f82e mingw: implement a platform-specific strbuf_realpath()

  • 25: a90a0ab = 28: 8bdd5c1 mingw: ensure valid CTYPE

  • 26: 68f85cf = 29: 22d5ab7 t5505/t5516: allow running without .git/branches/ in the templates

  • 27: bec292a = 30: 71fc876 mingw: allow git.exe to be used instead of the "Git wrapper"

  • 28: 7cff71f = 31: 808089b t5505/t5516: fix white-space around redirectors

  • 29: 55b6032 = 32: 45c4db5 mingw: ignore HOMEDRIVE/HOMEPATH if it points to Windows' system directory

  • 45: 587a8fa = 33: f5c751c http: use new "best effort" strategy for Secure Channel revoke checking

  • 47: a302bc7 = 34: 450d892 t3701: verify that we can add lots of files interactively

  • 48: 557bf38 = 35: 7f098f6 commit: accept "scissors" with CR/LF line endings

  • 49: 3f3c812 = 36: 88642d9 t0014: fix indentation

  • 50: b5743cc = 37: 83aba9c git-gui: accommodate for intent-to-add files

  • 30: 9610512 = 38: 0d0056a vcpkg_install: detect lack of Git

  • 32: 5765398 = 39: ed74f01 vcpkg_install: add comment regarding slow network connections

  • 31: afc3316 = 40: 64ab2f0 clink.pl: fix libexpatd.lib link error when using MSVC

  • 34: ebae29f = 41: 9d41771 vcbuild: install ARM64 dependencies when building ARM64 binaries

  • 33: 3c0755b = 42: 4ec4fc3 Makefile: clean up .ilk files when MSVC=1

  • 36: f8da1fe = 43: bf394d1 vcbuild: add an option to install individual 'features'

  • 35: 02c2481 = 44: 569fb34 vcbuild: add support for compiling Windows resource files

  • 38: 30429c5 = 45: aad744b cmake: allow building for Windows/ARM64

  • 37: f93d055 = 46: 34e4cea config.mak.uname: add git.rc to MSVC builds

  • 41: 280c56a ! 47: f89cbb5 ci(vs-build) also build Windows/ARM64 artifacts

    @@ .github/workflows/main.yml: jobs:
            env:
     @@ .github/workflows/main.yml: jobs:
          - name: upload tracked files and build artifacts
    -       uses: actions/upload-artifact@v4
    +       uses: actions/upload-artifact@v5
            with:
     -        name: vs-artifacts
     +        name: vs-artifacts-${{ matrix.arch }}
    @@ .github/workflows/main.yml: jobs:
          name: win+VS test
     @@ .github/workflows/main.yml: jobs:
          - name: download tracked files and build artifacts
    -       uses: actions/download-artifact@v5
    +       uses: actions/download-artifact@v6
            with:
     -        name: vs-artifacts
     +        name: vs-artifacts-x64
  • 40: 0443627 = 48: 879fd51 clink.pl: ignore no-stack-protector arg on MSVC=1 builds

  • 44: 54a287d = 49: 4077cde Add schannel to curl installation

  • 43: 6d2f15b = 50: a96d4e8 clink.pl: move default linker options for MSVC=1 builds

  • 53: ef96b49 = 51: 55c27a3 cmake(): allow setting HOST_CPU for cross-compilation

  • 51: 8f5b8c3 = 52: 2b76529 cmake: install headless-git.

  • 68: 3f23450 = 53: 521e558 mingw: allow for longer paths in parse_interpreter()

  • 69: ba4d090 = 54: 1f17005 compat/vcbuild: document preferred way to build in Visual Studio

  • 52: 345358c = 55: 9e0255c hash-object: demonstrate a >4GB/LLP64 problem

  • 54: 23852b1 = 56: 7a17591 object-file.c: use size_t for header lengths

  • 56: e405298 = 57: 90da186 CMake: default Visual Studio generator has changed

  • 57: 2d35f40 = 58: 14c9352 hash algorithms: use size_t for section lengths

  • 59: eadb1fd = 59: 274ecff .gitignore: add Visual Studio CMakeSetting.json file

  • 60: 2dc3666 = 60: 6db87ef hash-object --stdin: verify that it works with >4GB/LLP64

  • 62: 2101a75 = 61: 8e2694d subtree: update contrib/subtree test target

  • 63: 55b815b = 62: 320bb05 CMakeLists: add default "x64-windows" arch for Visual Studio

  • 64: 0052404 = 63: 1c2a5b8 hash-object: add another >4GB/LLP64 test case

  • 65: 2bf2b16 = 64: d1bc2e3 setup: properly use "%(prefix)/" when in WSL

  • 70: 4ca4449 = 65: 9879dac http: optionally send SSL client certificate

  • 71: 7591f2e = 66: 454c928 ci: run contrib/subtree tests in CI builds

  • 72: 8ddb77c = 67: 98c85b1 CMake: show Win32 and Generator_platform build-option values

  • 73: d799f8a = 68: 99328e2 init: do parse all core.* settings early

  • 74: 1afd87b = 69: da5d505 hash-object: add a >4GB/LLP64 test case using filtered input

  • 75: f7cc31c = 70: e988c37 compat/mingw.c: do not warn when failing to get owner

  • 76: c1670fe = 71: db272bd mingw: $env:TERM="xterm-256color" for newer OSes

  • 55: 5ab942a = 72: 6814655 MinGW: link as terminal server aware

  • 58: e054438 = 73: a27eb56 http: optionally load libcurl lazily

  • 61: 2509bdf = 74: 231c811 http: support lazy-loading libcurl also on Windows

  • 66: caf0d14 = 75: bdda202 Add config option windows.appendAtomically

  • 67: e9118a9 = 76: b8673e1 http: when loading libcurl lazily, allow for multiple SSL backends

  • 77: c8b4ea7 = 77: 8de5015 winansi: check result and Buffer before using Name

  • 78: cdc3f9f = 78: 449ec08 mingw: change core.fsyncObjectFiles = 1 by default

  • 79: 77ede14 = 79: b5098bd Fix Windows version resources

  • 80: 34225d4 = 80: 0275b1e status: fix for old-style submodules with commondir

  • 81: 34b3cde = 81: 37b91ee windows: skip linking git-<command> for built-ins

  • 82: e051e7b = 82: 296ad26 mingw: do load libcurl dynamically by default

  • 83: 634a2d1 = 83: 11944fc Add a GitHub workflow to verify that Git/Scalar work in Nano Server

  • 99: 22a84f5 = 84: eee68dd mingw: suggest windows.appendAtomically in more cases

  • 100: 0c213dc = 85: b433252 win32: use native ANSI sequence processing, if possible

  • 101: 0b185a4 = 86: cfa7eda git.rc: include winuser.h

  • 84: 03403d8 = 87: 6e71462 ci: work around a problem with HTTP/2 vs libcurl v8.10.0

  • 85: 0520a99 = 88: 3965197 revision: create mark_trees_uninteresting_dense()

  • 86: 6f965a2 = 89: 35a81e8 survey: stub in new experimental 'git-survey' command

  • 87: 5bcbd5b = 90: 11675c0 survey: add command line opts to select references

  • 88: 64f817c = 91: bd7464c survey: start pretty printing data in table form

  • 89: b5fab08 = 92: da5ca45 survey: add object count summary

  • 90: b954863 = 93: 5c9086a survey: summarize total sizes by object type

  • 91: 785f938 = 94: 4b39ea4 survey: show progress during object walk

  • 93: 036fcf7 = 95: 9015059 survey: add ability to track prioritized lists

  • 95: 7c5095d = 96: 3e3384e survey: add report of "largest" paths

  • 102: e97535e = 97: 5a1b572 common-main.c: fflush stdout buffer upon exit

  • 103: 1149316 = 98: 892fc87 t5601/t7406(mingw): do run tests with symlink support

  • 104: b926891 = 99: efda001 win32: ensure that localtime_r() is declared even in i686 builds

  • 105: a9c6883 = 100: b096601 Fallback to AppData if XDG_CONFIG_HOME is unset

  • 106: f4efffa = 101: 6a3f8ae run-command: be helpful with Git LFS fails on Windows 7

  • 92: 8401902 = 102: 0193be6 mingw: make sure errno is set correctly when socket operations fail

  • 94: dd868d6 = 103: 446163f compat/mingw: handle WSA errors in strerror

  • 96: c248965 = 104: fb23274 compat/mingw: drop outdated comment

  • 97: 6e4588d = 105: b718c56 survey: add --top= option and config

  • 98: 96f3f69 = 106: 44823dc t0301: actually test credential-cache on Windows

  • 107: 29f3d07 = 107: c93985f survey: clearly note the experimental nature in the output

  • 108: c3beaf2 = 108: 91b8686 credential-cache: handle ECONNREFUSED gracefully

  • 109: 5a9fe98 = 109: e110125 max_tree_depth: lower it for clangarm64 on Windows

  • 110: b56778e = 110: efc0a84 reftable: do make sure to use custom allocators

  • 111: f93cffb = 111: 6e30a61 check-whitespace: avoid alerts about upstream commits

  • 112: 71b367e = 112: 1991ce1 mingw: avoid the comma operator

  • 113: 9d9b947 = 113: 49cf9b2 wincred: Avoid memory corruption

  • 114: 99d5e15 = 114: 1246f75 cmake: stop trying to build the reftable and xdiff libraries

  • 115: 27329ca = 115: 1d5e24b ci(dockerized): do show the result of failing tests again

  • 116: 07a8c58 = 116: 331f450 git-svn: mark it as unsupported by the Git for Windows project

  • 146: 3234b40 = 117: d4dc94e git-gui--askyesno: fix funny text wrapping

  • 117: be2e3a0 = 118: 53959b1 Win32: make FILETIME conversion functions public

  • 118: b4bfdc1 = 119: 52fc9bf Win32: dirent.c: Move opendir down

  • 119: 62e0b9f = 120: b0db5ab mingw: make the dirent implementation pluggable

  • 120: 00fa304 = 121: 1c65011 Win32: make the lstat implementation pluggable

  • 121: 1967540 = 122: 3493edf mingw: add infrastructure for read-only file system level caches

  • 122: e3ea2f7 = 123: 85b262a mingw: add a cache below mingw's lstat and dirent implementations

  • 123: b5f1718 = 124: 9b5bf9f fscache: load directories only once

  • 124: e739a17 = 125: a503cde fscache: add key for GIT_TRACE_FSCACHE

  • 125: ec04b90 = 126: a1de633 fscache: remember not-found directories

  • 126: 215c2e4 = 127: bf3a8c7 fscache: add a test for the dir-not-found optimization

  • 127: 9a7f035 = 128: 4d940f6 add: use preload-index and fscache for performance

  • 128: a9c9cad = 129: 465b7d8 dir.c: make add_excludes aware of fscache during status

  • 129: e0b6263 = 130: 8262551 fscache: make fscache_enabled() public

  • 148: e2e119a = 131: 710c25a git-gui--askyesno (mingw): use Git for Windows' icon, if available

  • 130: 2a7231e = 132: dac79f4 dir.c: regression fix for add_excludes with fscache

  • 131: ed353be = 133: 8a47413 fetch-pack.c: enable fscache for stats under .git/objects

  • 132: 01ac0a9 = 134: 99a8cd2 checkout.c: enable fscache for checkout again

  • 133: df9fcbb = 135: 1c9ea07 Enable the filesystem cache (fscache) in refresh_index().

  • 134: 2f33366 = 136: 77734a9 fscache: use FindFirstFileExW to avoid retrieving the short name

  • 135: 3173830 = 137: 4c4d933 fscache: add GIT_TEST_FSCACHE support

  • 136: 344381a = 138: 7d4c2f6 fscache: add fscache hit statistics

  • 137: bbb5c02 = 139: c2b240e unpack-trees: enable fscache for sparse-checkout

  • 138: 80af5f8 = 140: 29efe60 status: disable and free fscache at the end of the status command

  • 139: b236c0f = 141: 081820c mem_pool: add GIT_TRACE_MEMPOOL support

  • 140: 4f46d07 = 142: ca3aa4e fscache: fscache takes an initial size

  • 141: b438f29 = 143: 8d5c9c6 fscache: update fscache to be thread specific instead of global

  • 142: 3ed2eae = 144: 6a0e628 fscache: teach fscache to use mempool

  • 143: c170b81 = 145: cd922a9 fscache: make fscache_enable() thread safe

  • 144: b037eba = 146: c1f07b4 fscache: teach fscache to use NtQueryDirectoryFile

  • 145: a3102ae = 147: 0e1015f fscache: remember the reparse tag for each entry

  • 147: f54325f = 148: 1663c91 fscache: implement an FSCache-aware is_mount_point()

  • 149: 3462b6c = 149: 99b8e43 clean: make use of FSCache

  • 150: 49491e1 = 150: 7332185 pack-objects (mingw): demonstrate a segmentation fault with large deltas

  • 151: 490df91 = 151: 6d251de mingw: support long paths

  • 152: 38eeaad = 152: 3ab1ee0 Win32: fix 'lstat("dir/")' with long paths

  • 153: 00f1f7a = 153: 5ab30c4 win32(long path support): leave drive-less absolute paths intact

  • 154: 430decc = 154: e28da79 compat/fsmonitor/fsm-*-win32: support long paths

  • 155: 5347572 = 155: f28ad6f clean: suggest using core.longPaths if paths are too long to remove

  • 156: 45fb861 = 156: 3d9c692 mingw: Support git_terminal_prompt with more terminals

  • 157: 981c044 = 157: 6ac6bc1 compat/terminal.c: only use the Windows console if bash 'read -r' fails

  • 158: 0a5c195 = 158: ab3bda8 mingw (git_terminal_prompt): do fall back to CONIN$/CONOUT$ method

  • 159: bf72c92 = 159: b2884f4 strbuf_readlink: don't call readlink twice if hint is the exact link size

  • 160: b13f979 = 160: d2eebd8 strbuf_readlink: support link targets that exceed PATH_MAX

  • 161: bdc6ff9 = 161: fb2b39e lockfile.c: use is_dir_sep() instead of hardcoded '/' checks

  • 162: 148ffdd = 162: d985f6b Win32: don't call GetFileAttributes twice in mingw_lstat()

  • 163: 2f5a8dc = 163: ba8a77d Win32: implement stat() with symlink support

  • 164: cf624d5 = 164: 9280746 Win32: remove separate do_lstat() function

  • 165: 44fad3f = 165: c50d76e Win32: let mingw_lstat() error early upon problems with reparse points

  • 166: 5023ad8 = 166: e8624cd mingw: teach fscache and dirent about symlinks

  • 167: b6ce1f0 = 167: 98a010e Win32: lstat(): return adequate stat.st_size for symlinks

  • 168: 86d57fb = 168: df94ac1 Win32: factor out retry logic

  • 169: de0e295 = 169: ac2046f Win32: change default of 'core.symlinks' to false

  • 170: a37bb27 = 170: f2e6916 Win32: add symlink-specific error codes

  • 171: 996abeb = 171: 7c3352d Win32: mingw_unlink: support symlinks to directories

  • 172: c2b75a3 = 172: 5ec9edd Win32: mingw_rename: support renaming symlinks

  • 173: 6c93cf0 = 173: 716e53c Win32: mingw_chdir: change to symlink-resolved directory

  • 174: 8ff71f3 = 174: 5b49c38 Win32: implement readlink()

  • 175: 04c6d33 = 175: 95ce563 mingw: lstat: compute correct size for symlinks

  • 176: 6e36209 = 176: 952ec0e Win32: implement basic symlink() functionality (file symlinks only)

  • 177: baf2ab4 = 177: cfd7e4f Win32: symlink: add support for symlinks to directories

  • 178: d4fa9a2 = 178: f96fdf2 mingw: try to create symlinks without elevated permissions

  • 179: cb1cf22 = 179: ce3323a mingw: emulate stat() a little more faithfully

  • 180: d352e82 = 180: 23e53f7 mingw: special-case index entries for symlinks with buggy size

  • 198: 1661823 = 181: f97edc2 mingw: introduce code to detect whether we're inside a Windows container

  • 181: 8d49a9e = 182: 0b22c47 Win32: symlink: move phantom symlink creation to a separate function

  • 182: cf8813f = 183: 4abc64b Introduce helper to create symlinks that knows about index_state

  • 183: af4b056 = 184: dd5151e mingw: allow to specify the symlink type in .gitattributes

  • 184: 13af3ab = 185: 6088efa Win32: symlink: add test for symlink attribute

  • 185: 4ae8180 = 186: 5d12105 mingw: explicitly specify with which cmd to prefix the cmdline

  • 186: 4b6e8a9 = 187: 75e6c72 mingw: when path_lookup() failed, try BusyBox

  • 187: 3643719 = 188: 8039f7f test-tool: learn to act as a drop-in replacement for iconv

  • 188: 6a86f61 = 189: 8c4ccc6 tests(mingw): if iconv is unavailable, use test-helper --iconv

  • 200: c8bcab9 = 190: 6694ef6 mingw: when running in a Windows container, try to rename() harder

  • 189: 70c0992 = 191: 1993012 gitattributes: mark .png files as binary

  • 202: f2c3865 = 192: e528336 mingw: move the file_attr_to_st_mode() function definition

  • 190: 28723e5 = 193: 55e04c1 tests: move test PNGs into t/lib-diff/

  • 204: 3857f39 = 194: 3e97d44 mingw: Windows Docker volumes are not symbolic links

  • 191: 630e47e = 195: 073ac34 tests: only override sort & find if there are usable ones in /usr/bin/

  • 206: 29ef654 = 196: 6a8cf24 mingw: work around rename() failing on a read-only file

  • 192: 4f5abb8 = 197: eaa385c tests: use the correct path separator with BusyBox

  • 193: 6bd020c = 198: cb25d43 mingw: only use Bash-ism builtin pwd -W when available

  • 194: 9f723cb = 199: 1ff9d07 tests (mingw): remove Bash-specific pwd option

  • 195: 945e4f6 = 200: 1c0c35c test-lib: add BUSYBOX prerequisite

  • 196: 5faafee = 201: 803c05a t5003: use binary file from t/lib-diff/

  • 197: e756996 = 202: 6889c86 t5532: workaround for BusyBox on Windows

  • 199: adbdc40 = 203: 394b993 t5605: special-case hardlink test for BusyBox-w32

  • 201: 151688b = 204: 1219872 t5813: allow for $PWD to be a Windows path

  • 203: 2f9d072 = 205: c6c2965 t9200: skip tests when $PWD contains a colon

  • 205: 6194e8d = 206: 3acedcc mingw: add a Makefile target to copy test artifacts

  • 207: 73fc2e3 = 207: 10d3e86 mingw: kill child processes in a gentler way

  • 214: 4d655b8 = 208: f282dfb mingw: do not call xutftowcs_path in mingw_mktemp

  • 208: 8584677 = 209: e352a35 mingw: optionally enable wsl compability file mode bits

  • 217: 706286c = 210: 1b893d0 mingw: really handle SIGINT

  • 209: e1eac7b = 211: 6e6ea73 Describe Git for Windows' architecture [no ci]

  • 210: 9ba4be1 = 212: 4009890 Modify the Code of Conduct for Git for Windows

  • 211: 256f2a2 = 213: 26c20a3 CONTRIBUTING.md: add guide for first-time contributors

  • 212: b5588c7 = 214: 1d5f8d5 README.md: Add a Windows-specific preamble

  • 215: c989c3a = 215: d5fc32d Add a GitHub workflow to monitor component updates

  • 213: a061b15 = 216: 5780e9d Add an issue template

  • 218: 0c24cd4 = 217: 7de22d6 Partially un-revert "editor: save and reset terminal after calling EDITOR"

  • 219: 5d11c78 = 218: e8aed6d reset: reinstate support for the deprecated --stdin option

  • 220: 10dbdaa = 219: 469cfce fsmonitor: reintroduce core.useBuiltinFSMonitor

  • 221: f1f4a08 = 220: 0cd7a29 dependabot: help keeping GitHub Actions versions up to date

  • 216: 60753fc = 221: 79dbd89 Modify the GitHub Pull Request template (to reflect Git for Windows)

  • 222: 74f364a = 222: ca68c5c SECURITY.md: document Git for Windows' policies

@dscho dscho marked this pull request as ready for review November 13, 2025 06:56
@dscho dscho linked an issue Nov 13, 2025 that may be closed by this pull request
@dscho dscho added this to the Next release milestone Nov 13, 2025
@dscho
Copy link
Member Author

dscho commented Nov 13, 2025

/git-artifacts

The tag-git workflow run was started

@gitforwindowshelper
Copy link

Validate the installer manually

The installer was built successfully;
Please download, install, and run through the pre-flight check-list.
@dscho ☝️

@dscho
Copy link
Member Author

dscho commented Nov 13, 2025

/release

The release-git workflow run was started

@gitforwindowshelper
Copy link

@dscho, please Share on Bluesky and send the announcement email.

@gitforwindowshelper gitforwindowshelper bot merged commit 30443be into main Nov 13, 2025
57 checks passed
@gitforwindowshelper gitforwindowshelper bot deleted the rebase-to-v2.52.0-rc2 branch November 13, 2025 11:11
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.

[New git version] v2.52.0-rc2