Rebase shears/seen: 1 conflict(s) (0 skipped, 1 resolved) (#29729194922)#322
Open
gitforwindowshelper[bot] wants to merge 335 commits into
Open
Rebase shears/seen: 1 conflict(s) (0 skipped, 1 resolved) (#29729194922)#322gitforwindowshelper[bot] wants to merge 335 commits into
gitforwindowshelper[bot] wants to merge 335 commits into
Conversation
Move the default `-ENTRY` and `-SUBSYSTEM` arguments for MSVC=1 builds from `config.mak.uname` into `clink.pl`. These args are constant for console-mode executables. Add support to `clink.pl` for generating a Win32 GUI application using the `-mwindows` argument (to match how GCC does it). This changes the `-ENTRY` and `-SUBSYSTEM` arguments accordingly. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
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 <johannes.schindelin@gmx.de>
The 'git survey' builtin provides several detail tables, such as "top files by on-disk size". The size of these tables defaults to 10, currently. Allow the user to specify this number via a new --top=<N> option or the new survey.top config key. Signed-off-by: Derrick Stolee <stolee@gmail.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Commit 2406bf5 (Win32: detect unix socket support at runtime, 2024-04-03) introduced a runtime detection for whether the operating system supports unix sockets for Windows, but a mistake snuck into the tests. When building and testing Git without NO_UNIX_SOCKETS we currently skip t0301-credential-cache on Windows if unix sockets are supported and run the tests if they aren't. Flip that logic to actually work the way it was intended. Signed-off-by: Matthias Aßhauer <mha1993@live.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The new default of Git is to disable NTLM authentication by default. To help users find the escape hatch of that config setting, should they need it, suggest it when the authentication failed and the server had offered NTLM, i.e. if re-enabling it would fix the problem. Helped-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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 git-for-windows#4083. Signed-off-by: Andrey Zabavnikov <zabavnikov@gmail.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
In 436a422 (max_tree_depth: lower it for clangarm64 on Windows, 2025-04-23), I provided a work-around for a nasty issue with clangarm builds, where the stack is exhausted before the maximal tree depth is reached, and the resulting error cannot easily be handled by Git (because it would require Windows-specific handling). Turns out that this is not at all limited to ARM64. In my tests with CLANG64 in MSYS2 on the GitHub Actions runners, the test t6700.4 failed in the exact same way. What's worse: The limit needs to be quite a bit lower for x86_64 than for aarch64. In aforementioned tests, the breaking point was 1232: With 1231 it still worked as expected, with 1232 it would fail with the `STATUS_STACK_OVERFLOW` incorrectly mapped to exit code 127. For comparison, in my tests on GitHub Actions' Windows/ARM64 runners, the breaking point was 1439 instead. Therefore the condition needs to be adapted once more, to accommodate (with some safety margin) both aarch64 and x86_64 in clang-based builds on Windows, to let that test pass. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
…ctory Internally, Git expects the environment variable `HOME` to be set, and to point to the current user's home directory. This environment variable is not set by default on Windows, and therefore Git tries its best to construct one if it finds `HOME` unset. There are actually two different approaches Git tries: first, it looks at `HOMEDRIVE`/`HOMEPATH` because this is widely used in corporate environments with roaming profiles, and a user generally wants their global Git settings to be in a roaming profile. Only when `HOMEDRIVE`/`HOMEPATH` is either unset or does not point to a valid location, Git will fall back to using `USERPROFILE` instead. However, starting with Windows Vista, for secondary logons and services, the environment variables `HOMEDRIVE`/`HOMEPATH` point to Windows' system directory (usually `C:\Windows\system32`). That is undesirable, and that location is usually write-protected anyway. So let's verify that the `HOMEDRIVE`/`HOMEPATH` combo does not point to Windows' system directory before using it, falling back to `USERPROFILE` if it does. This fixes git-for-windows#2709 Initial-Path-by: Ivan Pozdeev <vano@mail.mipt.ru> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
headless-git is a git executable without opening a console window. It is useful when other GUI executables want to call git. We should install it together with git on Windows. Signed-off-by: Yuyi Wang <Strawberry_Str@hotmail.com>
winuser.h contains the definition of RT_MANIFEST that our LLVM based toolchain needs to understand that we want to embed compat/win32/git.manifest as an application manifest. It currently just embeds it as additional data that Windows doesn't understand. This also helps our GCC based toolchain understand that we only want one copy embedded. It currently embeds one working assembly manifest and one nearly identical, but useless copy as additional data. This also teaches our Visual Studio based buildsystems to pick up the manifest file from git.rc. This means we don't have to explicitly specify it in contrib/buildsystems/Generators/Vcxproj.pm anymore. Slightly counter-intuitively this also means we have to explicitly tell Cmake not to embed a default manifest. This fixes git-for-windows#4707 Signed-off-by: Matthias Aßhauer <mha1993@live.de> Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
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 git-for-windows#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 <dl3@pale-eds.co.uk> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Windows 10 version 1511 (also known as Anniversary Update), according to https://learn.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences introduced native support for ANSI sequence processing. This allows using colors from the entire 24-bit color range. All we need to do is test whether the console's "virtual processing support" can be enabled. If it can, we do not even need to start the `console_thread` to handle ANSI sequences. Or, almost all we need to do: When `console_thread()` does its work, it uses the Unicode-aware `write_console()` function to write to the Win32 Console, which supports Git for Windows' implicit convention that all text that is written is encoded in UTF-8. The same is not necessarily true if native ANSI sequence processing is used, as the output is then subject to the current code page. Let's ensure that the code page is set to `CP_UTF8` as long as Git writes to it. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
By default, the buffer type of Windows' `stdout` is unbuffered (_IONBF), and there is no need to manually fflush `stdout`. But some programs, such as the Windows Filtering Platform driver provided by the security software, may change the buffer type of `stdout` to full buffering. This nees `fflush(stdout)` to be called manually, otherwise there will be no output to `stdout`. Signed-off-by: MinarKotonoha <chengzhuo5@qq.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
A long time ago, we decided to run tests in Git for Windows' SDK with the default `winsymlinks` mode: copying instead of linking. This is still the default mode of MSYS2 to this day. However, this is not how most users run Git for Windows: As the majority of Git for Windows' users seem to be on Windows 10 and newer, likely having enabled Developer Mode (which allows creating symbolic links without administrator privileges), they will run with symlink support enabled. This is the reason why it is crucial to get the fixes for CVE-2024-? to the users, and also why it is crucial to ensure that the test suite exercises the related test cases. This commit ensures the latter. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In order to be a better Windows citizenship, Git should save its configuration files on AppData folder. This can enables git configuration files be replicated between machines using the same Microsoft account logon which would reduce the friction of setting up Git on new systems. Therefore, if %APPDATA%\Git\config exists, we use it; otherwise $HOME/.config/git/config is used. Signed-off-by: Ariel Lourenco <ariellourenco@users.noreply.github.com>
Git LFS is now built with Go 1.21 which no longer supports Windows 7. However, Git for Windows still wants to support Windows 7. Ideally, Git LFS would re-introduce Windows 7 support until Git for Windows drops support for Windows 7, but that's not going to happen: git-for-windows#4996 (comment) The next best thing we can do is to let the users know what is happening, and how to get out of their fix, at least. This is not quite as easy as it would first seem because programs compiled with Go 1.21 or newer will simply throw an exception and fail with an Access Violation on Windows 7. The only way I found to address this is to replicate the logic from Go's very own `version` command (which can determine the Go version with which a given executable was built) to detect the situation, and in that case offer a helpful error message. This addresses git-for-windows#4996. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The sparse tree walk algorithm was created in d5d2e93 (revision: implement sparse algorithm, 2019-01-16) and involves using the mark_trees_uninteresting_sparse() method. This method takes a repository and an oidset of tree IDs, some of which have the UNINTERESTING flag and some of which do not. Create a method that has an equivalent set of preconditions but uses a "dense" walk (recursively visits all reachable trees, as long as they have not previously been marked UNINTERESTING). This is an important difference from mark_tree_uninteresting(), which short-circuits if the given tree has the UNINTERESTING flag. A use of this method will be added in a later change, with a condition set whether the sparse or dense approach should be used. Signed-off-by: Derrick Stolee <stolee@gmail.com>
While this command is definitely something we _want_, chances are that upstreaming this will require substantial changes. We still want to be able to experiment with this before that, to focus on what we need out of this command: To assist with diagnosing issues with large repositories, as well as to help monitoring the growth and the associated painpoints of such repositories. To that end, we are about to integrate this command into `microsoft/git`, to get the tool into the hands of users who need it most, with the idea to iterate in close collaboration between these users and the developers familar with Git's internals. However, we will definitely want to avoid letting anybody have the impression that this command, its exact inner workings, as well as its output format, are anywhere close to stable. To make that fact utterly clear (and thereby protect the freedom to iterate and innovate freely before upstreaming the command), let's mark its output as experimental in all-caps, as the first thing we do. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In 245670c (credential-cache: check for windows specific errors, 2021-09-14) we concluded that on Windows we would always encounter ENETDOWN where we would expect ECONNREFUSED on POSIX systems, when connecting to unix sockets. As reported in [1], we do encounter ECONNREFUSED on Windows if the socket file doesn't exist, but the containing directory does and ENETDOWN if neither exists. We should handle this case like we do on non-windows systems. [1] git-for-windows#4762 (comment) This fixes git-for-windows#5314 Helped-by: M Hickford <mirth.hickford@gmail.com> Signed-off-by: Matthias Aßhauer <mha1993@live.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The reftable library goes out of its way to use its own set of allocator functions that can be configured using `reftable_set_alloc()`. However, Git does not configure this. That is not typically a problem, except when Git uses a custom allocator via some definitions in `git-compat-util.h`, as is the case in Git for Windows (which switched away from the long-unmaintained nedmalloc to mimalloc). Then, it is quite possible that Git assigns a `strbuf` (allocated via the custom allocator) to, say, the `refname` field of a `reftable_log_record` in `write_transaction_table()`, and later on asks the reftable library function `reftable_log_record_release()` to release it, but that function was compiled without using `git-compat-util.h` and hence calls regular `free()` (i.e. _not_ the custom allocator's own function). This has been a problem for a long time and it was a matter of some sort of "luck" that 1) reftables are not commonly used on Windows, and 2) mimalloc can often ignore gracefully when it is asked to release memory that it has not allocated. However, a recent update to `seen` brought this problem to the forefront, letting t1460 fail in Git for Windows, with symptoms much in the same way as the problem I had to address in d02c37c (t-reftable-basics: allow for `malloc` to be `#define`d, 2025-01-08) where exit code 127 was also produced in lieu of `STATUS_HEAP_CORRUPTION` (C0000374) because exit codes are only 7 bits wide. It was not possible to figure out what change in particular caused these new failures within a reasonable time frame, as there are too many changes in `seen` that conflict with Git for Windows' patches, I had to stop the investigation after spending four hours on it fruitlessly. To verify that this patch fixes the issue, I avoided using mimalloc and temporarily patched in a "custom allocator" that would more reliably point out problems, like this: diff --git a/refs/reftable-backend.c b/refs/reftable-backend.c index 68f3829..9421d630b9f5 100644 --- a/refs/reftable-backend.c +++ b/refs/reftable-backend.c @@ -353,6 +353,69 @@ static int reftable_be_fsync(int fd) return fsync_component(FSYNC_COMPONENT_REFERENCE, fd); } +#define DEBUG_REFTABLE_ALLOC +#ifdef DEBUG_REFTABLE_ALLOC +#include "khash.h" + +static inline khint_t __ac_X31_hash_ptr(void *ptr) +{ + union { + void *ptr; + char s[sizeof(void *)]; + } u; + size_t i; + khint_t h; + + u.ptr = ptr; + h = (khint_t)*u.s; + for (i = 0; i < sizeof(void *); i++) + h = (h << 5) - h + (khint_t)u.s[i]; + return h; +} + +#define kh_ptr_hash_func(key) __ac_X31_hash_ptr(key) +#define kh_ptr_hash_equal(a, b) ((a) == (b)) + +KHASH_INIT(ptr, void *, int, 0, kh_ptr_hash_func, kh_ptr_hash_equal) + +static kh_ptr_t *my_malloced; + +static void *my_malloc(size_t sz) +{ + int dummy; + void *ptr = malloc(sz); + if (ptr) + kh_put_ptr(my_malloced, ptr, &dummy); + return ptr; +} + +static void *my_realloc(void *ptr, size_t sz) +{ + int dummy; + if (ptr) { + khiter_t pos = kh_get_ptr(my_malloced, ptr); + if (pos >= kh_end(my_malloced)) + die("Was not my_malloc()ed: %p", ptr); + kh_del_ptr(my_malloced, pos); + } + ptr = realloc(ptr, sz); + if (ptr) + kh_put_ptr(my_malloced, ptr, &dummy); + return ptr; +} + +static void my_free(void *ptr) +{ + if (ptr) { + khiter_t pos = kh_get_ptr(my_malloced, ptr); + if (pos >= kh_end(my_malloced)) + die("Was not my_malloc()ed: %p", ptr); + kh_del_ptr(my_malloced, pos); + } + free(ptr); +} +#endif + static struct ref_store *reftable_be_init(struct repository *repo, const char *gitdir, unsigned int store_flags) @@ -362,6 +425,11 @@ static struct ref_store *reftable_be_init(struct repository *repo, int is_worktree; mode_t mask; +#ifdef DEBUG_REFTABLE_ALLOC + my_malloced = kh_init_ptr(); + reftable_set_alloc(my_malloc, my_realloc, my_free); +#endif + mask = umask(0); umask(mask); I briefly considered contributing this "custom allocator" patch, too, but it is unwieldy (for example, it would not work at all when compiling with mimalloc support) and it would only waste space (or even time, if a compile flag was introduced and exercised as part of the CI builds). Given that it is highly unlikely that Git will lose the new `reftable_set_alloc()` call by mistake, I rejected that idea as simply too wasteful. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Every once in a while, whitespace errors are introduced in Git for Windows' rebases to newer Git versions, simply by virtue of integrating upstream commits that do not follow upstream Git's own whitespace rule. In Git v2.50.0-rc0, for example, 03f2915 (xdiff: disable cleanup_records heuristic with --minimal, 2025-04-29) introduced a trailing space. Arguably, non-actionable alerts are worse than no alerts at all, so let's suppress those alerts that we cannot do anything about, anyway. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The 2.53.0.rc0.windows release candidate had a regression where writing to stderr from a pre-push hook would error out. The regression was fixed in 2.53.0.rc1.windows and the test here ensures that this stays fixed. Signed-off-by: Thomas Braun <thomas.braun@virtuell-zuhause.de>
The previous commits disabled NTLM authentication by default due to its cryptographic weaknesses. Users can re-enable it via the config setting http.<url>.allowNTLMAuth, but this requires manual intervention. Credential helpers may have knowledge about which servers are trusted for NTLM authentication (e.g., known on-prem Azure DevOps instances). To allow them to signal this trust, introduce a simple negotiation: when NTLM is suppressed and the server offered it, Git advertises ntlm=suppressed to the credential helper. The helper can respond with ntlm=allow to re-enable NTLM for this request. This happens precisely at the point where we would otherwise warn the user about NTLM being suppressed, ensuring the capability is only advertised when relevant. Helped-by: Matthew John Cheetham <mjcheetham@outlook.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
It was already decided in ef22148 (clean: do not traverse mount points, 2018-12-07) that we shouldn't traverse NTFS junctions/bind mounts when using `git clean`, partly because they're sometimes used in worktrees. But the same check wasn't applied to `remove_dir_recurse()` in `dir.c`, which `git worktree remove` uses. So removing a worktree suffers the same problem we had previously with `git clean`. Let's add the same guard from ef22148. Signed-off-by: Maks Kuznia <makskuznia244@gmail.com>
While the currently used way to detect the number of CPU cores on Windows is nice and straight-forward, GetSystemInfo() only gives us access to the number of processors within the current group. [1] While that is usually fine for systems with a single physical CPU, separate physical sockets are typically separate groups. Switch to using GetLogicalProcessorInformationEx() to handle multi-socket systems better. [1] https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/ns-sysinfoapi-system_info#members This fixes git-for-windows#4766 Co-Authored-by: Herman Semenov <GermanAizek@yandex.ru> Signed-off-by: Matthias Aßhauer <mha1993@live.de>
Add tests exercising the interaction between http.emptyAuth and servers that advertise Negotiate (SPNEGO) authentication. Verify that auto mode gives Negotiate a chance via empty auth (resulting in two 401 responses before falling through to credential_fill with Basic credentials), and that false mode strips Negotiate immediately (only one 401 response). Signed-off-by: Matthew John Cheetham <mjcheetham@outlook.com>
Continue the size_t evacuation around large object handling: with deflate_it() and the locals around it widened, the cast_size_t_to_ulong() shim the prior delta_delta() widening had to leave behind in emit_binary_diff_body() goes away. deflate_it() is file-static; the only callers are the two in emit_binary_diff_body() already touched here. emit_diff_symbol() formats the resulting sizes via uintmax_t / %"PRIuMAX", so the diff output is not affected; only the per-process upper bound on a binary patch chunk that this function can address grows beyond 4 GiB on Windows. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Rather than using private IFTTT Applets that send mails to this maintainer whenever a new version of a Git for Windows component was released, let's use the power of GitHub workflows to make this process publicly visible. This workflow monitors the Atom/RSS feeds, and opens a ticket whenever a new version was released. Note: Bash sometimes releases multiple patched versions within a few minutes of each other (i.e. 5.1p1 through 5.1p4, 5.0p15 and 5.0p16). The MSYS2 runtime also has a similar system. We can address those patches as a group, so we shouldn't get multiple issues about them. Note further: We're not acting on newlib releases, OpenSSL alphas, Perl release candidates or non-stable Perl releases. There's no need to open issues about them. Co-authored-by: Matthias Aßhauer <mha1993@live.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This is the recommended way on GitHub to describe policies revolving around security issues and about supported versions. Helped-by: Sven Strickroth <email@cs-ware.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
On Windows, the current working directory is pretty much guaranteed to contain a colon. If we feed that path to CVS, it mistakes it for a separator between host and port, though. This has not been a problem so far because Git for Windows uses MSYS2's Bash using a POSIX emulation layer that also pretends that the current directory is a Unix path (at least as long as we're in a shell script). However, that is rather limiting, as Git for Windows also explores other ports of other Unix shells. One of those is BusyBox-w32's ash, which is a native port (i.e. *not* using any POSIX emulation layer, and certainly not emulating Unix paths). So let's just detect if there is a colon in $PWD and punt in that case. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
…ITOR" In e3f7e01 (Revert "editor: save and reset terminal after calling EDITOR", 2021-11-22), we reverted the commit wholesale where the terminal state would be saved and restored before/after calling an editor. The reverted commit was intended to fix a problem with Windows Terminal where simply calling `vi` would cause problems afterwards. To fix the problem addressed by the revert, but _still_ keep the problem with Windows Terminal fixed, let's revert the revert, with a twist: we restrict the save/restore _specifically_ to the case where `vi` (or `vim`) is called, and do not do the same for any other editor. This should still catch the majority of the cases, and will bridge the time until the original patch is re-done in a way that addresses all concerns. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The `--stdin` option was a well-established paradigm in other commands, therefore we implemented it in `git reset` for use by Visual Studio. Unfortunately, upstream Git decided that it is time to introduce `--pathspec-from-file` instead. To keep backwards-compatibility for some grace period, we therefore reinstate the `--stdin` option on top of the `--pathspec-from-file` option, but mark it firmly as deprecated. Helped-by: Victoria Dye <vdye@github.com> Helped-by: Matthew John Cheetham <mjcheetham@outlook.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Reintroduce the 'core.useBuiltinFSMonitor' config setting (originally added in 0a756b2 (fsmonitor: config settings are repository-specific, 2021-03-05)) after its removal from the upstream version of FSMonitor. Upstream, the 'core.useBuiltinFSMonitor' setting was rendered obsolete by "overloading" the 'core.fsmonitor' setting to take a boolean value. However, several applications (e.g., 'scalar') utilize the original config setting, so it should be preserved for a deprecation period before complete removal: * if 'core.fsmonitor' is a boolean, the user is correctly using the new config syntax; do not use 'core.useBuiltinFSMonitor'. * if 'core.fsmonitor' is unspecified, use 'core.useBuiltinFSMonitor'. * if 'core.fsmonitor' is a path, override and use the builtin FSMonitor if 'core.useBuiltinFSMonitor' is 'true'; otherwise, use the FSMonitor hook indicated by the path. Additionally, for this deprecation period, advise users to switch to using 'core.fsmonitor' to specify their use of the builtin FSMonitor. Signed-off-by: Victoria Dye <vdye@github.com>
See https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#enabling-dependabot-version-updates-for-actions for details. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Upstream Git does not test their tags with the expensive set of tests, so a couple of them seem quite broken for now, even so much as hanging indefinitely. It is outside of the responsibility of the Git for Windows project to fix upstream's own tests for platforms other than Windows, so let's not exercise them. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
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 <johannes.schindelin@gmx.de>
…updates Start monitoring updates of Git for Windows' component in the open
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Add a README.md for GitHub goodness. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/cache/releases">actions/cache's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update packages, migrate to ESM by <a href="https://github.com/Samirat"><code>@Samirat</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1760">actions/cache#1760</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/cache/compare/v5...v6.0.0">https://github.com/actions/cache/compare/v5...v6.0.0</a></p> <h2>v5.1.0</h2> <h2>What's Changed</h2> <ul> <li>Bump <code>@actions/cache</code> to v5.1.0 - handle read-only cache access by <a href="https://github.com/jasongin"><code>@jasongin</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1775">actions/cache#1775</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/cache/compare/v5...v5.1.0">https://github.com/actions/cache/compare/v5...v5.1.0</a></p> <h2>v5.0.5</h2> <h2>What's Changed</h2> <ul> <li>Update ts-http-runtime dependency by <a href="https://github.com/yacaovsnc"><code>@yacaovsnc</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1747">actions/cache#1747</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/cache/compare/v5...v5.0.5">https://github.com/actions/cache/compare/v5...v5.0.5</a></p> <h2>v5.0.4</h2> <h2>What's Changed</h2> <ul> <li>Add release instructions and update maintainer docs by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1696">actions/cache#1696</a></li> <li>Potential fix for code scanning alert no. 52: Workflow does not contain permissions by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1697">actions/cache#1697</a></li> <li>Fix workflow permissions and cleanup workflow names / formatting by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1699">actions/cache#1699</a></li> <li>docs: Update examples to use the latest version by <a href="https://github.com/XZTDean"><code>@XZTDean</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1690">actions/cache#1690</a></li> <li>Fix proxy integration tests by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1701">actions/cache#1701</a></li> <li>Fix cache key in examples.md for bun.lock by <a href="https://github.com/RyPeck"><code>@RyPeck</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1722">actions/cache#1722</a></li> <li>Update dependencies & patch security vulnerabilities by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1738">actions/cache#1738</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/XZTDean"><code>@XZTDean</code></a> made their first contribution in <a href="https://redirect.github.com/actions/cache/pull/1690">actions/cache#1690</a></li> <li><a href="https://github.com/RyPeck"><code>@RyPeck</code></a> made their first contribution in <a href="https://redirect.github.com/actions/cache/pull/1722">actions/cache#1722</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/cache/compare/v5...v5.0.4">https://github.com/actions/cache/compare/v5...v5.0.4</a></p> <h2>v5.0.3</h2> <h2>What's Changed</h2> <ul> <li>Bump <code>@actions/cache</code> to v5.0.5 (Resolves: <a href="https://github.com/actions/cache/security/dependabot/33">https://github.com/actions/cache/security/dependabot/33</a>)</li> <li>Bump <code>@actions/core</code> to v2.0.3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/cache/compare/v5...v5.0.3">https://github.com/actions/cache/compare/v5...v5.0.3</a></p> <h2>v.5.0.2</h2> <h1>v5.0.2</h1> <h2>What's Changed</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/actions/cache/blob/main/RELEASES.md">actions/cache's changelog</a>.</em></p> <blockquote> <h1>Releases</h1> <h2>How to prepare a release</h2> <blockquote> <p>[!NOTE] Relevant for maintainers with write access only.</p> </blockquote> <ol> <li>Switch to a new branch from <code>main</code>.</li> <li>Run <code>npm test</code> to ensure all tests are passing.</li> <li>Update the version in <a href="https://github.com/actions/cache/blob/main/package.json"><code>https://github.com/actions/cache/blob/main/package.json</code></a>.</li> <li>Run <code>npm run build</code> to update the compiled files.</li> <li>Update this <a href="https://github.com/actions/cache/blob/main/RELEASES.md"><code>https://github.com/actions/cache/blob/main/RELEASES.md</code></a> with the new version and changes in the <code>## Changelog</code> section.</li> <li>Run <code>licensed cache</code> to update the license report.</li> <li>Run <code>licensed status</code> and resolve any warnings by updating the <a href="https://github.com/actions/cache/blob/main/.licensed.yml"><code>https://github.com/actions/cache/blob/main/.licensed.yml</code></a> file with the exceptions.</li> <li>Commit your changes and push your branch upstream.</li> <li>Open a pull request against <code>main</code> and get it reviewed and merged.</li> <li>Draft a new release <a href="https://github.com/actions/cache/releases">https://github.com/actions/cache/releases</a> use the same version number used in <code>package.json</code> <ol> <li>Create a new tag with the version number.</li> <li>Auto generate release notes and update them to match the changes you made in <code>RELEASES.md</code>.</li> <li>Toggle the set as the latest release option.</li> <li>Publish the release.</li> </ol> </li> <li>Navigate to <a href="https://github.com/actions/cache/actions/workflows/release-new-action-version.yml">https://github.com/actions/cache/actions/workflows/release-new-action-version.yml</a> <ol> <li>There should be a workflow run queued with the same version number.</li> <li>Approve the run to publish the new version and update the major tags for this action.</li> </ol> </li> </ol> <h2>Changelog</h2> <h3>6.1.0</h3> <ul> <li>Bump <code>@actions/cache</code> to v6.1.0 to pick up <a href="https://redirect.github.com/actions/toolkit/pull/2435">actions/toolkit#2435 Handle cache write error due to read-only token</a></li> <li>Switch redundant "Cache save failed" warning to debug log in save-only</li> </ul> <h3>6.0.0</h3> <ul> <li>Updated <code>@actions/cache</code> to ^6.0.1, <code>@actions/core</code> to ^3.0.1, <code>@actions/exec</code> to ^3.0.0, <code>@actions/io</code> to ^3.0.2</li> <li>Migrated to ESM module system</li> <li>Upgraded Jest to v30 and test infrastructure to be ESM compatible</li> </ul> <h3>5.0.4</h3> <ul> <li>Bump <code>minimatch</code> to v3.1.5 (fixes ReDoS via globstar patterns)</li> <li>Bump <code>undici</code> to v6.24.1 (WebSocket decompression bomb protection, header validation fixes)</li> <li>Bump <code>fast-xml-parser</code> to v5.5.6</li> </ul> <h3>5.0.3</h3> <ul> <li>Bump <code>@actions/cache</code> to v5.0.5 (Resolves: <a href="https://github.com/actions/cache/security/dependabot/33">https://github.com/actions/cache/security/dependabot/33</a>)</li> <li>Bump <code>@actions/core</code> to v2.0.3</li> </ul> <h3>5.0.2</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/cache/commit/55cc8345863c7cc4c66a329aec7e433d2d1c52a9"><code>55cc834</code></a> Merge pull request <a href="https://redirect.github.com/actions/cache/issues/1768">#1768</a> from jasongin/readonly-cache</li> <li><a href="https://github.com/actions/cache/commit/d8cd72f230726cdf4457ebb61ec1b593a8d12337"><code>d8cd72f</code></a> Bump <code>@actions/cache</code> to v6.1.0 - handle cache write error due to RO token</li> <li><a href="https://github.com/actions/cache/commit/2c8a9bd7457de244a408f35966fab2fb45fda9c8"><code>2c8a9bd</code></a> Merge pull request <a href="https://redirect.github.com/actions/cache/issues/1760">#1760</a> from actions/samirat/esm_migration_and_package_update</li> <li><a href="https://github.com/actions/cache/commit/e9b91fdc3fea7d79165fceb79042ef45c2d51023"><code>e9b91fd</code></a> Prettier fixes</li> <li><a href="https://github.com/actions/cache/commit/e4884b8ff7f92ef6b52c79eda480bbc86e685adb"><code>e4884b8</code></a> Rebuild dist</li> <li><a href="https://github.com/actions/cache/commit/10baf0191a3c426ea0fa4a3253a5c04233b6e18f"><code>10baf01</code></a> Fixed licenses</li> <li><a href="https://github.com/actions/cache/commit/e39b386c9004d72a15d864ade8c0b3a702d47a37"><code>e39b386</code></a> Fix test mock return order</li> <li><a href="https://github.com/actions/cache/commit/b6928203372a8571ff984c0c883ef3a1adfb0c06"><code>b692820</code></a> PR feedback</li> <li><a href="https://github.com/actions/cache/commit/60749128a44d25d3c520a489e576380cf00ff3f1"><code>6074912</code></a> Rebuild dist bundles as ESM to match type:module</li> <li><a href="https://github.com/actions/cache/commit/5a912e8b4af820fa082a0e75cfd2c782f8fbfe0e"><code>5a912e8</code></a> Fix lint and jest issues</li> <li>Additional commits viewable in <a href="https://github.com/actions/cache/compare/v5...v6">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
) While upstreaming those patches, I've been asked to adjust them. This backports those fixes. Of course, the _real_ reason to do this _now_ is that I need _some_ PR to make a new Git for Windows release (to address [the NTLM](git-for-windows#6308) issue).
Mirror what git survey already reports: lightweight tags (pointing straight at a commit/tree/blob) and annotated tags (pointing at an OBJ_TAG that is itself stored as a separate object) are different things in many monorepo contexts, and one of the differences git survey users routinely care about. Add an annotated_tags counter to struct ref_stats, populate it in count_references() by peeking at the ref OID's object type, and expose it as a sub-row under Tags in the table output and as references.tags.annotated.count in the machine-readable formats. Step toward pivoting the standalone git survey command onto git repo structure; this fills the first of the four feature gaps documented in the assessment. Tests in t1901 widened to assert the new row and key. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
`git repo structure` walks every reference enumerated by `refs_for_each_ref()` and feeds each reference's tip into the path walk that produces the object counts. There is no way to scope the inquiry to a subset of refs, even though that is the most common need when an operator is investigating what part of the history is driving cost: only branches, only release tags, only one remote's view, etc. Add a single `--ref-filter=<pattern>` option that, when given, restricts both the reference count and the object walk to refs whose full name matches one of the patterns. The option is repeatable; multiple patterns form a union, so `--ref-filter='refs/heads/*' --ref-filter='refs/tags/v*'` includes local branches and tags whose short name starts with `v`. Patterns use `wildmatch()` with `WM_PATHNAME` semantics so a `*` does not cross `/`, matching the convention used by `git for-each-ref` positional arguments. Choosing a single flexible filter, rather than a proliferation of per-kind flags like `--branches`, `--tags`, `--remotes`, keeps the option surface small and lets the same mechanism express narrow selections the per-kind flags could not, such as "only release tags" (`'refs/tags/v*'`) or "only one remote's branches" (`'refs/remotes/origin/*'`). Without `--ref-filter`, behaviour is unchanged: every ref `refs_for_each_ref()` enumerates contributes. Both the reference counter and the path-walk seeding (via `add_pending_oid()`) sit on the same callback, so an early return when no pattern matches naturally excludes a ref from both. No separate object-walk machinery is needed. Cover the two interesting code paths with tests in t1901: a single filter narrowing to branches, and two filters unioning to include both branches and tags. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
`git survey` distinguishes itself from `git repo structure` largely by its path-level reporting: in addition to whole-repo totals it lists the paths whose object histories dominate the repository, ranked by raw count, on-disk size, and inflated size, separately for trees and blobs. That is often the most actionable output from `git survey`, since it points an operator at the directories and files that should be reviewed for cleanup, sparse-checkout exclusion, or rewriting. `git repo structure` already drives the same path-walk traversal that `git survey` uses to gather its per-path numbers; the callback simply discards the path. Aggregate per-(path, type) summaries inside that existing callback and add a bounded, descending-sorted "top-N" table keyed by each of the three axes. Gate the feature behind a new `--top=<n>` option, defaulting to 0, so unadorned invocations are unaffected and pay no extra work for the top-N tracking. Mirror the sort and eviction strategy from `builtin/survey.c`: keep an array of at most N entries sorted from largest to smallest, walk it from the bottom on each candidate, and shift entries down when a new one belongs. Compared to `builtin/survey.c`, drop the void-pointer indirection in the table data, type the comparator's arguments, and fold the trivial comparators into the `(a > b) - (a < b)` idiom. For the human-readable `table` output, extend the existing nested bullet layout with two new top-level sections, `* Top trees` and `* Top blobs`, each containing three sub-tables (`Top by count`, `Top by disk size`, `Top by inflated size`). The path becomes the row name and the relevant scalar becomes the value, reusing `stats_table_count_addf` and `stats_table_size_addf` so units and column alignment match the rest of the table. For the `lines`/`nul` key-value formats, emit one `objects.<type>.top.by_<axis>.<rank>.path=<path>` entry alongside an `objects.<type>.top.by_<axis>.<rank>.<axis>=<value>` entry per ranked path, so consumers can dispatch by axis without parsing the schema. The root tree's path is the empty string as produced by the path-walk machinery; preserve that as-is to stay faithful to the upstream representation rather than fabricating a placeholder. This is the first piece of folding `git survey`'s functionality into `git repo structure`. Subsequent commits will add the corresponding configuration knob and, eventually, turn `git survey` into a thin deprecated shim over `git repo structure`. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The preceding commit added `--top=<n>` to `git repo structure`,
reporting the top-N paths per type ranked by count, on-disk size, and
inflated size. Cover the three behaviors that matter for that option:
* Without `--top`, the key-value output emits no `top.*` keys, so
existing parsers stay unaffected.
* `--top=N` produces exactly N ranked entries on each of the six
`objects.<type>.top.by_<axis>` axes (count/disk_size/inflated_size
crossed with trees/blobs), and a constructed input where one blob
is several orders of magnitude bigger than the other lets us
assert the ordering on the disk-size and inflated-size axes.
* A negative `--top` is rejected with a non-zero exit and a message
naming the constraint, so a typo cannot silently degrade into the
default zero.
Avoid grep patterns starting with `--`; grep would parse the leading
double dash as an option terminator.
Assisted-by: Opus 4.7
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
`git survey` exposes its `--top` default via `survey.top` so that a site or per-repository operator can switch the detail tables on once and have every subsequent invocation include them. Mirror that ergonomics for `git repo structure` so that, as `git survey`'s functionality is folded into `git repo structure`, the configuration side of the migration story stays equivalent. Add a small `git_config_int` callback bound to `repo.structure.top` and invoke it before `parse_options()`, so a `--top=<N>` on the command line cleanly overrides the configured default (including `--top=0` to opt out of the detail tables when configuration enables them). Reject negative configured values with the same wording as the command-line guard, since `git_config_int()` happily returns negative integers. Document the new variable in a fresh `Documentation/config/repo.adoc` and wire it into the alphabetical includes in `Documentation/config.adoc` between `repack.adoc` and `rerere.adoc`. Cover the precedence behaviour with a t1901 test: a configured value enables the tables by default, and a command-line `--top=0` suppresses them again. Note that the reported paths respect the `core.quotePath` setting. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
`git survey` started life as an experimental scale-measurement tool; the preceding commits give `git repo structure` the path-level detail tables and ref-scoping mechanism that were `git survey`'s main draw, so the two now overlap substantially. Plan the migration explicitly: add a short notice at the top of the description making clear which of `git survey`'s knobs map to which `git repo structure` option, and state that a future release will turn `git survey` into a thin shim over `git repo structure`. Putting the notice in the description (rather than only the synopsis) ensures it shows up in `git help survey` rendering before the reader sees any option specifics, so an operator skimming the page learns about the replacement before adopting any survey-specific flags. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
`git survey` was an experimental scale-measurement tool whose
distinctive features (ref-kind filters, top-N path tables) are now
all available in `git repo structure`. With the path-level reporting
in place (commits "repo: filter the structure scope via
--ref-filter=<pattern>" and "repo: report top-N paths by count, disk,
and inflated size in structure"), there is no functionality `git
survey` provides that `git repo structure` cannot.
Replace the 764-line `git survey` implementation with a roughly
hundred-line shim that:
* Accepts the existing `git survey` command line so callers in
scripts continue to parse without changes.
* Emits a deprecation warning naming the replacement command, so
interactive users learn about the migration target.
* Translates the survey-specific knobs into the equivalent
`git repo structure` invocation and re-execs the canonical
command via `execv_git_cmd()`. Per-kind ref selectors fan out
into the corresponding `refs/heads/*`, `refs/tags/*`, etc.
`--ref-filter` patterns; `--top=<N>` is forwarded directly;
`--all-refs` becomes the absence of any `--ref-filter`.
Two survey options have no `git repo structure` counterpart:
`--verbose` controlled per-step trace output the new command does
not emit, and `--detached` selected the detached HEAD which
`git repo structure` does not enumerate separately. Both are
silently accepted and produce a single warning each, so old
invocations keep working while the absence of these knobs in `git
repo structure` is made visible.
Rewrite t8100 to assert the shim's contract: the deprecation
warning is printed, the output is byte-identical to a corresponding
`git repo structure` invocation, and the per-kind selector
translation produces the right `--ref-filter` pattern. The
preceding survey-specific output assertions (the multi-column
plaintext tables) no longer apply, since `git repo structure`'s
output format is now the canonical one and is covered by t1901.
The `survey.*` configuration keys (`survey.top`, `survey.progress`,
`survey.verbose`) are no longer honored by the shim. They were
mirrored by the preceding `repo.structure.top` work for the most
useful knob; users with `survey.top` set in config should migrate
to `repo.structure.top`. This is a backward-incompatible removal
documented by the deprecation notice in `git-survey.adoc`.
Assisted-by: Opus 4.7
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Git for Windows dropped Windows 7 support a long time ago. This patch was carried in Git for Windows without making it upstream, and exists exclusively to support Windows 7 users. Therefore it can now go enjoy its retirement. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
…it-for-windows#6268) `git survey` was always experimental, and I never got around to upstreaming it to make it non-experimental. In the meantime, the `git repo structure` command was upstreamed upstream, which covers most of the same ground with a cleaner option surface and a stable output contract. This PR closes the remaining gap (annotated-tag breakdown, ref scoping, top-N paths by count/disk/inflated, and the corresponding configuration knob) and then turns `git survey` into a thin shim that warns about deprecation, translates its old command line into the equivalent `git repo structure` invocation, and re-execs the canonical command. Net result: one user-facing tool to maintain and to teach instead of two. The intent is that scripts pinned to `git survey` keep working (a warning aside), and that operators have a single answer when they ask "how do I see what's making my repository large?". The `survey.*` configuration keys are intentionally dropped; the only one that mattered, `survey.top`, has a direct replacement in `repo.structure.top`.
Git for Windows dropped Windows 7 support a long time ago. There is a patch (introduced in git-for-windows#5042 and in git-for-windows#5059) to detect when Git LFS failed to start because of lack of Windows 7 support (which was lost somewhat surprisingly, via a Go upgrade that slipped that change in), and to provid a helpful message to the user in that instance. Since Git for Windows itself does not support Windows 7 anymore, that patch is no longer necessary, either.
Git for Windows v2.55.0(3)
Changes since Git for Windows v2.55.0(2) (July 2nd 2026):
New Features
* Comes with Git Credential Manager v2.9.0.
Bug Fixes
* Fixes heap overflows in the credential helper wincred, see
GHSA-rxqw-wxqg-g7hw for full details.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Workflow run
Rebase Summary: seen
From: cd8f3be44d (Merge tag 'v2.55.0.windows.3', 2026-07-16) (103bb7d388..cd8f3be44d)
Resolved: aa50eaf (Some amendments for the
hashliteral_tsize fixes (git-for-windows#6311), 2026-07-03)Took HEAD version for all files except t/t1007-hash-object.sh where the !LONG_IS_64BIT prereq was removed per the fixup's intent
Range-diff
1: aa50eaf ! 1: e38c559 Some amendments for the
hashliteral_tsize fixes (Some amendments for thehashliteral_tsize fixes git#6311)@@ Commit message to make a new Git for Windows release (to address [the NTLM](https://github.com/git-for-windows/git/issues/6308) issue). - ## refs/reftable-backend.c ## -@@ refs/reftable-backend.c: static struct ref_store *reftable_be_init(struct repository *repo, + ## builtin/fast-import.c ## + remerge CONFLICT (content): Merge conflict in builtin/fast-import.c + index e3a411bd3a..7d856af38d 100644 + --- builtin/fast-import.c + +++ builtin/fast-import.c +@@ builtin/fast-import.c: static int store_object( + struct object_entry *e; + unsigned char hdr[96]; + struct object_id oid; +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + size_t hdrlen, deltalen = 0; +-======= +- size_t hdrlen, deltalen; +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + struct git_hash_ctx c; + git_zstream s; + struct repo_config_values *cfg = repo_config_values(the_repository); +@@ builtin/fast-import.c: static void cat_blob_write(const char *buf, unsigned long size) + static void cat_blob(struct object_entry *oe, struct object_id *oid) + { + struct strbuf line = STRBUF_INIT; +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + struct iovec iov[3]; +-======= +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + size_t size; + enum object_type type = 0; + char *buf; + + ## ci/lib.sh ## + remerge CONFLICT (content): Merge conflict in ci/lib.sh + index 3e0969b218..f31a36ceeb 100755 + --- ci/lib.sh + +++ ci/lib.sh +@@ ci/lib.sh: export SKIP_DASHED_BUILT_INS=YesPlease + # In order to catch bugs introduced at integration time by mismerges, + # enable the long tests for pushes to the integration branches as well. + test -z "$MSYSTEM" || +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + case "$CI_EVENT,$CI_BRANCH" in +-======= +-case "$GITHUB_EVENT_NAME,$CI_BRANCH" in +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + pull_request,*|push,*next*|push,*master*|push,*main*|push,*maint*) + export GIT_TEST_LONG=${GIT_TEST_LONG:-true} + ;; + + ## compat/mingw.c ## + remerge CONFLICT (content): Merge conflict in compat/mingw.c + index 814391e4b6..df70bae6b6 100644 + --- compat/mingw.c + +++ compat/mingw.c +@@ compat/mingw.c: static void setup_windows_environment(void) - reftable_set_alloc(malloc, realloc, free); + if (!getenv("LC_ALL") && !getenv("LC_CTYPE") && !getenv("LANG")) + setenv("LC_CTYPE", "C.UTF-8", 1); +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + } -+ reftable_set_alloc(malloc, realloc, free); -+ - refs_compute_filesystem_location(gitdir, payload, &is_worktree, &refdir, - &ref_common_dir); + int mingw_platform_has_symlinks(void) + { + static int has_symlinks = -1; +-======= +- +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + /* + * Change 'core.symlinks' default to false, unless native symlinks are + * enabled in MSys2 (via 'MSYS=winsymlinks:nativestrict'). Thus we can + + ## compat/win32/path-utils.c ## + remerge CONFLICT (content): Merge conflict in compat/win32/path-utils.c + index 752df9f5e6..84b620756a 100644 + --- compat/win32/path-utils.c + +++ compat/win32/path-utils.c +@@ + #include "../../git-compat-util.h" + #include "../../environment.h" +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + #include "../../repository.h" +-======= +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + #include "../../wrapper.h" + #include "../../strbuf.h" + #include "../../versioncmp.h" - ## t/t1007-hash-object.sh ## -@@ t/t1007-hash-object.sh: done - test_expect_success 'too-short tree' ' - echo abc >malformed-tree && - test_must_fail git hash-object -t tree malformed-tree 2>err && -- test_grep "too-short tree object" err -+ grep "too-short tree object" err - ' + ## config.mak.uname ## + remerge CONFLICT (content): Merge conflict in config.mak.uname + index 2b417d1b0e..e0c8dcef9c 100644 + --- config.mak.uname + +++ config.mak.uname +@@ config.mak.uname: endif + EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj kernel32.lib ntdll.lib + GITLIBS += git.res + PTHREAD_LIBS = +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + RC = lib/compat/vcbuild/scripts/rc.pl +-======= +- RC = compat/vcbuild/scripts/rc.pl +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + lib = + BASIC_CFLAGS += $(vcpkg_inc) $(sdk_includes) $(msvc_includes) + ifndef DEBUG + + ## git-compat-util.h ## + remerge CONFLICT (content): Merge conflict in git-compat-util.h + index 4a74c698a5..4980c60506 100644 + --- git-compat-util.h + +++ git-compat-util.h +@@ git-compat-util.h: struct fscache; + #ifndef enable_fscache + #define enable_fscache(x) /* noop */ + #endif +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + #ifndef flush_fscache + #define flush_fscache() /* noop */ + #endif +-======= +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) - test_expect_success PERL_TEST_HELPERS 'malformed mode in tree' ' -@@ t/t1007-hash-object.sh: test_expect_success PERL_TEST_HELPERS 'malformed mode in tree' ' - bin_oid=$(echo $hex_oid | hex2oct) && - printf "9100644 \0$bin_oid" >tree-with-malformed-mode && - test_must_fail git hash-object -t tree tree-with-malformed-mode 2>err && -- test_grep "malformed mode in tree entry" err -+ grep "malformed mode in tree entry" err - ' + #ifndef disable_fscache + #define disable_fscache() /* noop */ + + ## meson_options.txt ## + remerge CONFLICT (content): Merge conflict in meson_options.txt + index 2b122b65ba..427697f5f7 100644 + --- meson_options.txt + +++ meson_options.txt +@@ meson_options.txt: option('runtime_prefix', type: 'boolean', value: false, + description: 'Resolve ancillary tooling and support files relative to the location of the runtime binary instead of hard-coding them into the binary.') + option('sane_tool_path', type: 'array', value: [], + description: 'An array of paths to pick up tools from in case the normal tools are broken or lacking.') +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + option('nanosec', type: 'boolean', value: false, + description: 'Care about sub-second file mtimes and ctimes.') +-======= +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + option('msystem', type: 'string', value: '', + description: 'Fall-back on Windows when MSYSTEM is not set.') + option('mingw_prefix', type: 'string', value: '', + + ## object-file.c ## + remerge CONFLICT (content): Merge conflict in object-file.c + index 86cb899382..ec35c318bc 100644 + --- object-file.c + +++ object-file.c +@@ object-file.c: int parse_loose_header(const char *hdr, struct object_info *oi) + return 0; + } - test_expect_success PERL_TEST_HELPERS 'empty filename in tree' ' -@@ t/t1007-hash-object.sh: test_expect_success PERL_TEST_HELPERS 'empty filename in tree' ' - bin_oid=$(echo $hex_oid | hex2oct) && - printf "100644 \0$bin_oid" >tree-with-empty-filename && - test_must_fail git hash-object -t tree tree-with-empty-filename 2>err && -- test_grep "empty filename in tree entry" err -+ grep "empty filename in tree entry" err - ' +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) +-======= +-static void hash_object_body(const struct git_hash_algo *algo, struct git_hash_ctx *c, +- const void *buf, size_t len, +- struct object_id *oid, +- char *hdr, size_t *hdrlen) +-{ +- algo->init_fn(c); +- git_hash_update(c, hdr, *hdrlen); +- git_hash_update(c, buf, len); +- git_hash_final_oid(oid, c); +-} +- +-void write_object_file_prepare(const struct git_hash_algo *algo, +- const void *buf, size_t len, +- enum object_type type, struct object_id *oid, +- char *hdr, size_t *hdrlen) +-{ +- struct git_hash_ctx c; +- +- /* Generate the header */ +- *hdrlen = format_object_header(hdr, *hdrlen, type, len); +- +- /* Hash (function pointers) computation */ +- hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen); +-} +- +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + #define CHECK_COLLISION_DEST_VANISHED -2 - test_expect_success PERL_TEST_HELPERS 'duplicate filename in tree' ' -@@ t/t1007-hash-object.sh: test_expect_success PERL_TEST_HELPERS 'duplicate filename in tree' ' - printf "100644 file\0$bin_oid" - } >tree-with-duplicate-filename && - test_must_fail git hash-object -t tree tree-with-duplicate-filename 2>err && -- test_grep "duplicateEntries" err -+ grep "duplicateEntries" err - ' + static int check_collision(const char *source, const char *dest) +@@ object-file.c: void hash_object_file(const struct git_hash_algo *algo, const void *buf, + { + struct git_hash_ctx c; + char hdr[MAX_HEADER_LEN]; +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + int hdrlen; +-======= +- size_t hdrlen = sizeof(hdr); +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + + hdrlen = format_object_header(hdr, sizeof(hdr), type, len); - test_expect_success 'corrupt commit' ' + + ## object-file.h ## + remerge CONFLICT (content): Merge conflict in object-file.h + index 4c45ba1747..805f2cfa28 100644 + --- object-file.h + +++ object-file.h +@@ object-file.h: int finalize_object_file_flags(struct repository *repo, + void hash_object_file(const struct git_hash_algo *algo, const void *buf, + size_t len, enum object_type type, + struct object_id *oid); +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) +-======= +-void write_object_file_prepare(const struct git_hash_algo *algo, +- const void *buf, size_t len, +- enum object_type type, struct object_id *oid, +- char *hdr, size_t *hdrlen); +-int write_loose_object(struct odb_source_loose *loose, +- const struct object_id *oid, char *hdr, +- int hdrlen, const void *buf, unsigned long len, +- time_t mtime, unsigned flags); +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + + /* Helper to check and "touch" a file */ + int check_and_freshen_file(const char *fn, int freshen, + + ## odb/source-loose.c ## + remerge CONFLICT (content): Merge conflict in odb/source-loose.c + index 85ced7a799..ef0e919277 100644 + --- odb/source-loose.c + +++ odb/source-loose.c +@@ odb/source-loose.c: static int write_loose_object(struct odb_source_loose *loose, + + static int odb_source_loose_write_object(struct odb_source *source, + const void *buf, size_t len, +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + enum object_type type, + const struct object_id *oid, + const struct object_id *compat_oid, + const time_t *mtime, +-======= +- enum object_type type, struct object_id *oid, +- struct object_id *compat_oid_in, +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + enum odb_write_object_flags flags) + { + struct odb_source_loose *loose = odb_source_loose_downcast(source); + char hdr[MAX_HEADER_LEN]; +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + int hdrlen; +-======= +- size_t hdrlen = sizeof(hdr); +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + + hdrlen = format_object_header(hdr, sizeof(hdr), type, len); + + + ## send-pack.c ## + remerge CONFLICT (content): Merge conflict in send-pack.c + index 52f988392a..0d3a0d330c 100644 + --- send-pack.c + +++ send-pack.c +@@ send-pack.c: int send_pack(struct repository *r, + allow_deleting_refs = 1; + if (server_supports("ofs-delta")) + args->use_ofs_delta = 1; +-<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + if (server_supports("no-ref-delta")) + args->no_ref_delta = 1; +-======= +->>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + use_sideband = use_sideband && server_supports("side-band-64k"); + if (server_supports("quiet")) + quiet_supported = 1; + + ## t/t1007-hash-object.sh ## + remerge CONFLICT (content): Merge conflict in t/t1007-hash-object.sh + index 510da3036b..463b38f990 100755 + --- t/t1007-hash-object.sh + +++ t/t1007-hash-object.sh @@ t/t1007-hash-object.sh: test_expect_success EXPENSIVE,SIZE_T_IS_64BIT \ # This clean filter does nothing, other than excercising the interface. # We ensure that cleaning doesn't mangle large files on 64-bit Windows. +-<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) -test_expect_success EXPENSIVE,SIZE_T_IS_64BIT,!LONG_IS_64BIT \ -+test_expect_success EXPENSIVE,SIZE_T_IS_64BIT \ +-================================ + test_expect_success EXPENSIVE,SIZE_T_IS_64BIT \ +->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) 'hash filtered files over 4GB correctly' ' { test -f big || test-tool genzeros $((5*1024*1024*1024)) >big; } && test_oid large5GB >expect && + + ## t/t1517-outside-repo.sh ## + remerge CONFLICT (content): Merge conflict in t/t1517-outside-repo.sh + index e84763b2ae..efbac29c0e 100755 + --- t/t1517-outside-repo.sh + +++ t/t1517-outside-repo.sh +@@ t/t1517-outside-repo.sh: do + http-backend | http-fetch | http-push | init-db | \ + mktag | p4 | p4.py | pickaxe | remote-ftp | remote-ftps | \ + remote-http | remote-https | replay | send-email | \ +-<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + sh-i18n--envsubst | shell | show | stage | survey | \ + upload-archive--writer | upload-pack | whatchanged) + h_expect_outcome=expect_failure +@@ t/t1517-outside-repo.sh: do + h_expect_outcome=expect_success + all_expect_outcome=expect_failure + ;; +-================================ +- sh-i18n--envsubst | shell | show | stage | submodule | survey | svn | \ +- upload-archive--writer | upload-pack | web--browse | whatchanged) +- expect_outcome=expect_failure ;; +->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + *) + h_expect_outcome=expect_success + all_expect_outcome=expect_success + + ## t/t6403-merge-file.sh ## + remerge CONFLICT (content): Merge conflict in t/t6403-merge-file.sh + index 50493f7bb1..bd58e471bc 100755 + --- t/t6403-merge-file.sh + +++ t/t6403-merge-file.sh +@@ t/t6403-merge-file.sh: test_expect_success "expected conflict markers" ' + test_expect_success 'binary files cannot be merged' ' + test_must_fail git merge-file -p \ + orig.txt "$TEST_DIRECTORY"/lib-diff/test-binary-1.png new1.txt 2> merge.err && +-<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 938fabaf07 (build(deps): bump actions/cache from 5 to 6 (#6303)) + test_grep "Cannot merge binary files" merge.err +-================================ +- grep "Cannot merge binary files" merge.err +->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> c8dff95af8 (fixup! hash-object: add a >4GB/LLP64 test case using filtered input) + ' + + test_expect_success 'binary files cannot be merged with --object-id' 'To: 2d5e463d36 (Merge tag 'v2.55.0.windows.3', 2026-07-16) (920c7f660c..2d5e463d36)
Statistics
Range-diff (click to expand)
1: 17d8560 = 1: 13381bc mingw: skip symlink type auto-detection for network share targets
3: b26a315 = 2: f33df69 unix-socket: avoid leak when initialization fails
2: e92ecf2 = 3: c103ed5 Merge branch 'prevent-accidental-ntlm-exfiltration-via-symlinks'
4: 5e84f4a = 4: 1933997 grep: prevent
^$false match at end of file5: b95b051 = 5: dc03fde Merge branch 'v2.53.0.windows.3'
6: 3b10b59 = 6: 255a5c7 Merge branch 'fixes-from-the-git-mailing-list'
7: 5ba1cc9 = 7: d7f9bf4 ci(vs-build): adapt to Visual Studio 2026 default on windows-latest
8: c553966 = 8: 4a0b6ea vcpkg_install: detect lack of Git
9: 1e88c29 = 9: 35ff59c vcpkg_install: add comment regarding slow network connections
10: 68e78e7 = 10: 03afc76 vcbuild: install ARM64 dependencies when building ARM64 binaries
11: 1893b1f = 11: 3e571f4 vcbuild: add an option to install individual 'features'
12: e098fca = 12: 1c90f29 cmake: allow building for Windows/ARM64
14: ee3c167 = 13: 969b56f ci(vs-build) also build Windows/ARM64 artifacts
18: d6bfcd1 = 14: 83030c6 vcbuild: stop hard-coding OpenSSL as a dependency
23: 46d7efc = 15: f028a64 cmake(): allow setting HOST_CPU for cross-compilation
13: 8c1a3c4 = 16: d4ee4ed t9350: point out that refs are not updated correctly
59: f9eccbc = 17: 0e72cda CMake: default Visual Studio generator has changed
15: 20709cd = 18: 7631072 transport-helper: add trailing --
16: 71d7b69 = 19: e83b286 mingw: demonstrate a
git addissue with NTFS junctions63: 1ca0800 = 20: a46a385 .gitignore: add Visual Studio CMakeSetting.json file
17: a741f56 = 21: d635406 t5505/t5516: allow running without
.git/branches/in the templates19: 2b3420a = 22: 6f150f9 remote-helper: check helper status after import/export
20: 0ff9f48 = 23: dc383de strbuf_realpath(): use platform-dependent API if available
24: 62099f2 = 24: eb79c7b http: use new "best effort" strategy for Secure Channel revoke checking
67: 7896f0b = 25: 9f4096a subtree: update
contrib/subtreetesttarget68: 39c1043 = 26: b038b7c CMakeLists: add default "x64-windows" arch for Visual Studio
69: 948ae3c = 27: 5ce7276 hash-object: add another >4GB/LLP64 test case
70: ab33d31 = 28: a155556 setup: properly use "%(prefix)/" when in WSL
71: ae08ff0 = 29: c5e0adc Add config option
windows.appendAtomically21: 7248255 = 30: 354e6ce mingw: include the Python parts in the build
22: b3fafbd = 31: f6ce350 t5505/t5516: fix white-space around redirectors
57: 049f736 = 32: 07185e1 MinGW: link as terminal server aware
25: c3a1258 = 33: 2c65886 ci: bump actions/checkout from 6 to 7
26: d7cc12a = 34: d30991d Always auto-gc after calling a fast-import transport
27: a8fbb28 = 35: 2c85c5d mingw: prevent regressions with "drive-less" absolute paths
28: eb654a2 = 36: dc61a5a transport: optionally disable side-band-64k
29: 5b28d3e = 37: 2a8595a mingw: fix fatal error working on mapped network drives on Windows
30: 1bfe639 = 38: e8e8bc1 clink.pl: fix MSVC compile script to handle libcurl-d.lib
31: 510c400 = 39: 657724d mingw: implement a platform-specific
strbuf_realpath()32: e9fa408 = 40: 68af7b6 t3701: verify that we can add lots of files interactively
33: 56aac51 = 41: 8c3b038 commit: accept "scissors" with CR/LF line endings
34: 20247ca = 42: 291a9cc t0014: fix indentation
35: 266c408 = 43: 1c172ed git-gui: accommodate for intent-to-add files
36: 7bc72ce = 44: b8677e8 mingw: allow for longer paths in
parse_interpreter()37: c3411c7 = 45: cfa4d3d compat/vcbuild: document preferred way to build in Visual Studio
75: aecdf45 = 46: a94b037 http: optionally send SSL client certificate
76: e3dedc1 = 47: e0187fe ci: run
contrib/subtreetests in CI builds77: 39f602f = 48: b77c489 CMake: show Win32 and Generator_platform build-option values
78: 34cf706 = 49: 2eec4b8 hash-object: add a >4GB/LLP64 test case using filtered input
79: 6ec0b73 = 50: 8e851d9 compat/mingw.c: do not warn when failing to get owner
80: d2e096e = 51: 7bd2738 mingw: $env:TERM="xterm-256color" for newer OSes
81: 92a5af0 = 52: 5ace2d2 winansi: check result and Buffer before using Name
82: f0a7beb = 53: eaf8881 mingw: change core.fsyncObjectFiles = 1 by default
83: 6b601a2 = 54: 145f247 Fix Windows version resources
38: c49e504 = 55: d850309 windows: skip linking
git-<command>for built-ins39: 85f9f1e = 56: 1bc8b65 mingw: stop hard-coding
CC = gcc40: a3c9adb = 57: c52145b mingw: drop the -D_USE_32BIT_TIME_T option
41: c990cd2 = 58: b7d9a58 mingw: only use -Wl,--large-address-aware for 32-bit builds
42: be6468a = 59: bf77816 mingw: avoid over-specifying
--pic-executable43: 9c732ad = 60: 54a333c mingw: set the prefix and HOST_CPU as per MSYS2's settings
44: def6503 = 61: ae79213 mingw: only enable the MSYS2-specific stuff when compiling in MSYS2
45: e3021df = 62: 416d5e3 mingw: rely on MSYS2's metadata instead of hard-coding it
46: 620c233 = 63: bc18143 mingw: always define
ETC_*for MSYS2 environments47: 73a0c88 = 64: f19a6f6 max_tree_depth: lower it for clang builds in general on Windows
48: 73b1068 = 65: 29b34bf mingw: ensure valid CTYPE
49: 6afbaa1 = 66: 6bce802 mingw: allow
git.exeto be used instead of the "Git wrapper"55: 1e382d3 = 67: 42c170b revision: create mark_trees_uninteresting_dense()
50: fd084f8 = 68: b5772d7 mingw: ignore HOMEDRIVE/HOMEPATH if it points to Windows' system directory
58: 1a8909b = 69: 90a61ea survey: stub in new experimental 'git-survey' command
51: 2e61251 = 70: 51fd0e7 Merge branch 'dscho-avoid-d-f-conflict-in-vs-master'
62: 5608b5a = 71: 5175cca survey: add command line opts to select references
52: bc07fe7 = 72: e7bf8e8 clink.pl: fix libexpatd.lib link error when using MSVC
66: 8d956aa = 73: 1355674 survey: start pretty printing data in table form
53: b785209 = 74: 0952273 Makefile: clean up .ilk files when MSVC=1
74: 604ae7b = 75: 4931268 survey: add object count summary
54: d9a0e33 = 76: 3657e7e vcbuild: add support for compiling Windows resource files
99: 9368aaa = 77: 53d644f survey: summarize total sizes by object type
56: 9cbaf1e = 78: cc9c9d9 config.mak.uname: add git.rc to MSVC builds
102: 063035b = 79: aa982fa survey: show progress during object walk
103: d9b1489 = 80: 0a082e2 mingw: make sure
errnois set correctly when socket operations fail104: 774ee4e = 81: 62280e7 t5563: verify that NTLM authentication works
60: 4b23b02 = 82: fc154cb clink.pl: ignore no-stack-protector arg on MSVC=1 builds
61: 1cab8e6 = 83: 0f96b2d http: optionally load libcurl lazily
108: 2b53737 = 84: fa9e22e survey: add ability to track prioritized lists
109: 66ded2b = 85: 66406a6 compat/mingw: handle WSA errors in strerror
110: 836b3d6 = 86: 9db1abb http: disallow NTLM authentication by default
64: 52c14d7 = 87: 3a60c18 clink.pl: move default linker options for MSVC=1 builds
65: 527881c = 88: f7fa483 http: support lazy-loading libcurl also on Windows
114: d70bf2a = 89: 7c18720 survey: add report of "largest" paths
115: 51aea24 = 90: 6b6890a compat/mingw: drop outdated comment
116: d8d63f8 = 91: e79875b http: warn if might have failed because of NTLM
72: 89e6348 = 92: f08a500 cmake: install headless-git.
73: 5edfc4d = 93: 2c1a487 http: when loading libcurl lazily, allow for multiple SSL backends
120: cae6ba9 = 94: 4feb37c survey: add --top= option and config
121: c2b7fb1 = 95: 26ec2e6 t0301: actually test credential-cache on Windows
122: 6940b35 = 96: 7645142 credential: advertise NTLM suppression and allow helpers to re-enable
84: 40a16e3 = 97: c1aea3a status: fix for old-style submodules with commondir
85: 3bc86f5 = 98: 9c045fe git.rc: include winuser.h
86: 36ce9d1 = 99: a30f444 mingw: do load libcurl dynamically by default
87: 68b2b81 = 100: 36b1f8e Add a GitHub workflow to verify that Git/Scalar work in Nano Server
88: 87f9385 = 101: 9afd8ee mingw: suggest
windows.appendAtomicallyin more cases89: 0f1204c = 102: 5a96ae8 win32: use native ANSI sequence processing, if possible
90: e677428 = 103: 6b20e70 common-main.c: fflush stdout buffer upon exit
91: bcd9ffa = 104: dd0894b t5601/t7406(mingw): do run tests with symlink support
92: 507e255 = 105: 03d8d46 Fallback to AppData if XDG_CONFIG_HOME is unset
93: 46f4e59 = 106: 3147b53 run-command: be helpful with Git LFS fails on Windows 7
127: 7611bdf = 107: 2091b17 survey: clearly note the experimental nature in the output
128: 0b5214a = 108: dc72a03 credential-cache: handle ECONNREFUSED gracefully
129: e3eede8 = 109: 9c4e2a8 reftable: do make sure to use custom allocators
130: 515b2a0 = 110: 8015b1d check-whitespace: avoid alerts about upstream commits
131: af09100 = 111: 2e6c771 t/t5571-prep-push-hook.sh: Add test with writing to stderr
132: c80cd32 = 112: 1cc040f dir: do not traverse mount points
133: 9662591 = 113: 88e817a win32: thread-utils: handle multi-socket systems
134: d31c019 = 114: 4ad7b25 t5563: add tests for http.emptyAuth with Negotiate
94: b26757d = 115: b466e21 mingw: Support
git_terminal_promptwith more terminals95: 618458f = 116: 59787e3 compat/terminal.c: only use the Windows console if bash 'read -r' fails
96: 71cbae4 = 117: 30c5c7f diff: stop truncating the deflated-binary-diff size on Windows
97: 2f53c47 = 118: d3e81cc mingw (git_terminal_prompt): do fall back to CONIN$/CONOUT$ method
98: 13ef076 = 119: ab01036 convert: widen gather_convert_stats() helpers to size_t
100: 88a3db7 = 120: 9bd7daf Win32: symlink: move phantom symlink creation to a separate function
101: e189310 = 121: 7094602 read-cache: stop truncating index blob sizes on Windows
105: dbc32ea = 122: dac16f9 mingw: introduce code to detect whether we're inside a Windows container
106: de6b896 = 123: f1597f0 Introduce helper to create symlinks that knows about index_state
107: 6255426 = 124: 122be8c xdiff-interface: widen buffer_is_binary() size parameter to size_t
141: 9628a7a = 125: 67d3e83 tree-walk: drop link_len cast in get_tree_entry_follow_symlinks()
111: 29b92d6 = 126: 9451798 mingw: when running in a Windows container, try to rename() harder
112: 91b1391 = 127: ead068c mingw: allow to specify the symlink type in .gitattributes
113: e54dca2 = 128: 67077e5 combine-diff: stop truncating combined-diff blob sizes on Windows
143: e2a87bd = 129: 2d32142 tree-walk: widen init_tree_desc() and init_tree_desc_gently() to size_t
117: d4e7316 = 130: dc872d2 mingw: move the file_attr_to_st_mode() function definition
118: afd95ab = 131: bdbd1de Win32: symlink: add test for
symlinkattribute119: 53f5772 = 132: a1a4890 diff: widen textconv_object() size out-param to size_t
125: 4f275bf = 133: 8d67435 pack-bitmap: stop truncating blob sizes used by --filter=blob:limit
142: 8a384cc = 134: 8bba07b Merge branch 'size-t/pack-objects-delta'
145: ccbfd3a = 135: 1ca3b67 pack-objects: drop the two tree-walk casts in the preferred-base path
123: 2345cf0 = 136: 5eb359e mingw: Windows Docker volumes are not symbolic links
124: fccda54 = 137: ebf7929 clean: do not traverse mount points
126: 5684244 = 138: c68a5af diffcore: widen struct diff_filespec.size to size_t
144: 05afd84 = 139: 5d99696 Merge branch 'size-t/pack-bitmap'
146: 5294ce7 = 140: 4e6e128 diff-delta: widen sizeof_delta_index() return to size_t
148: e998372 = 141: 8a8dc8d tree: widen struct tree.size and parse_tree_buffer() to size_t
150: 28c1128 = 142: cfb15b6 commit: widen the commit-buffer API to size_t
152: ea5136d = 143: 3bbd4b0 blame: widen find_line_starts() len parameter to size_t
154: a4339a7 = 144: c69d17e grep: widen struct grep_source.size and grep_buffer() to size_t
156: fde93e1 = 145: 9a38142 fast-export: drop the export_blob() size cast and widen anonymize_blob()
158: 687adec = 146: 6097a45 repo: drop the inflated-size cast in count_objects()
160: f1949ab = 147: 28ee212 unpack-objects: widen the size-passing infrastructure to size_t
135: dfc4c10 = 148: 7bb2c9a entry: flush fscache after creating directories and writing files
136: 3ca9673 = 149: b052116 ci(macos): skip the
git p4tests137: f3c8e6a = 150: 6c42797 mingw: work around rename() failing on a read-only file
138: a8d2808 = 151: 27c17a0 clean: remove mount points when possible
139: 29e1182 = 152: 837bd7c mingw: optionally enable wsl compability file mode bits
140: 72e6d60 = 153: 9f44179 Refuse to follow invalid paths in
.gitfiles147: 52f4c9d = 154: d9932d3 Merge branch 'size-t/diff'
149: f95613e = 155: ecbb5a7 Merge branch 'size-t/diff-delta-sizeof'
151: 4df67db = 156: 9be57e6 Merge branch 'size-t/tree'
153: 2e55f00 = 157: c422c8c Merge branch 'size-t/commit'
155: eed500d = 158: 4119fa0 Merge branch 'size-t/blame'
157: 7ece782 = 159: 0b3f881 Merge branch 'size-t/grep'
159: 958f77f = 160: abd6d8f Merge branch 'size-t/fast-export'
161: c581140 = 161: 3e50aa1 Merge branch 'size-t/repo'
162: d46a373 = 162: 6db2ee1 Merge branch 'size-t/unpack-objects'
163: 5dce3ea = 163: 03929aa Merge branch 'topic/size-t' into size-t-followups
164: 43ae1ee = 164: 6270aeb pack-objects: drop cast_size_t_to_ulong shims in get_delta()
166: 1a892d7 = 165: 062f9ab pack-objects: drop cast_size_t_to_ulong shims in try_delta()
168: 153fe81 = 166: db89d84 pack-objects: drop the last size shim in write_no_reuse_object()
170: 625b18e = 167: 2bfe285 blame: widen struct blame_scoreboard.final_buf_size to size_t
172: 097d21c = 168: 8a2cdd6 fast-import: drop the six size casts in the object-read paths
174: f3c5b02 = 169: 7edd574 t/helper/test-pack-deltas: drop the delta_size cast in write_ref_delta()
165: f7184bd = 170: 9a85163 Merge branch 'bump-ci-actions/checkout-from-6-to-7'
176: 22c2add = 171: 124f803 Drop the
cast_size_t_to_ulong()helper177: 26d5c51 = 172: f80338e Merge branch 'topic/size-t' (size_t evacuation, upstream-bound)
167: 8cfadbf = 173: 66d4671 Merge 'remote-hg-prerequisites' into HEAD
179: 6cd54c2 = 174: a4c5f15 Merge branch 'topic/size-t-followups' (size_t followups depending on seen topics)
180: a5d8bf3 = 175: f8b0b41 coverity: skip building with Rust, for now
169: 3c4127c = 176: a2bc281 Merge branch 'drive-prefix'
171: 333def7 = 177: 1060e56 Merge branch 'msys2-python'
173: 355f20f = 178: 5447ac3 Merge pull request Config option to disable side-band-64k for transport git#2375 from assarbad/reintroduce-sideband-config
175: ce02599 = 179: d88e08d Merge pull request mingw: fix fatal error working on mapped network drives on Windows git#2488 from bmueller84/master
178: ea21e39 = 180: d9afce4 Merge pull request clink.pl: fix MSVC compile script to handle libcurl-d.lib git#2501 from jeffhostetler/clink-debug-curl
181: b3a2886 = 181: 7bef68a Merge pull request Handle
git add <file>where <file> traverses an NTFS junction git#2504 from dscho/access-repo-via-junction182: 1f5d3a7 = 182: 2260203 Merge pull request Introduce and use the new "best effort" strategy for Secure Channel revoke checking git#2535 from dscho/schannel-revoke-best-effort
183: 155f7ba = 183: ea6551e Merge pull request ci: avoid d/f conflict in vs/master git#2618 from dscho/avoid-d/f-conflict-in-vs/master
184: 0314c68 = 184: 7e20431 Merge 'add-p-many-files'
185: a177986 = 185: 5493b46 Merge pull request Rationalize line endings for scissors-cleanup git#2714 from lbonanomi/crlf-scissors
186: a8ce606 = 186: 0ee85ed Merge pull request t/t0014: fix: eliminate additional lines from trace git#2655 from jglathe/jg/t0014_trace_extra_info
187: 7c3bcf9 = 187: 5dfe104 Merge 'git-gui/js/intent-to-add'
188: b30fe92 = 188: e5a9701 Merge pull request Vcpkg Install: detect lack of working Git, and note possible vcpkg time outs git#2351 from PhilipOakley/vcpkg-tip
189: 78008f8 = 189: 44a8619 Merge pull request Windows arm64 support git#2915 from dennisameling/windows-arm64-support
190: b240e27 = 190: 7b02ab5 Merge pull request cmake(): allow setting HOST_CPU for cross-compilation git#3327 from dennisameling/fix-host-cpu
191: 42c4ee1 = 191: 5204a85 Merge pull request mingw: allow for longer paths in
parse_interpreter()git#3165 from dscho/increase-allowed-length-of-interpreter-path192: 8d7e00c = 192: f9752dd Merge pull request Let the documentation reflect that there is no vs/master anymore git#3220 from dscho/there-is-no-vs/master-anymore
193: b413a33 = 193: a399506 Merge pull request http: Add support for enabling automatic sending of SSL client certificate git#3293 from pascalmuller/http-support-automatically-sending-client-certificate
194: 3bdd52e = 194: d40ffa2 Merge pull request Add
contrib/subtreetest execution to CI builds git#3349 from vdye/feature/ci-subtree-tests195: 749a3bc = 195: 42550f2 Merge pull request Make Git for Windows start builds in modern Visual Studio git#3306 from PhilipOakley/vs-sln
196: c72b43d = 196: 4b7fce8 Merge pull request Begin
unsigned long->size_tconversion to support large files on Windows git#3533 from PhilipOakley/hashliteral_t197: dcbc69f = 197: 811439f Merge pull request Various fixes around
safe.directorygit#3791: Various fixes aroundsafe.directory198: 6d0be8b = 198: ee73c94 Merge pull request mingw: set $env:TERM=xterm-256color for newer OSes git#3751 from rkitover/native-term
199: 6e55794 = 199: 83fc85d Merge pull request winansi: check result before using Name for pty git#3875 from 1480c1/wine/detect_msys_tty
200: 13adb7d = 200: 3bdd8fe Merge branch 'optionally-dont-append-atomically-on-windows'
201: 55747a0 = 201: e1cdddc Merge branch 'fsync-object-files-always'
202: 8a3ab39 = 202: cd5015f Merge pull request MinGW: link as terminal server aware git#3942 from rimrul/mingw-tsaware
203: 54b38b4 = 203: 962bd91 Fix Windows version resources (Fix Windows version resources git#4092)
204: 2c6e0d0 = 204: 8e2b40c Fix global repository field not being cleared (Fix global repository field not being cleared git#4083)
205: 0e151ec = 205: cd2ad34 Skip linking the "dashed"
git-<command>s for built-ins (Skip linking the "dashed"git-<command>s for built-ins git#4252)206: 3c8510a = 206: 5dff5ad Add full
mingw-w64-git(i.e. regular MSYS2 ecosystem) support (Add fullmingw-w64-git(i.e. regular MSYS2 ecosystem) support git#5971)207: d074b7e = 207: 6090c23 Merge pull request Allow running Git directly from
C:\Program Files\Git\mingw64\bin\git.exegit#2506 from dscho/issue-2283208: 0edf9ee = 208: 11229a1 Merge pull request Include Windows-specific maintenance and headless-git git#2974 from derrickstolee/maintenance-and-headless
209: 310cc2f = 209: 2114837 ARM64: Embed manifest properly (ARM64: Embed manifest properly git#4718)
210: d40005c = 210: baf8392 Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl (Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl git#4410)
211: 6788391 = 211: 163dd12 Merge branch 'nano-server'
212: 1676197 = 212: 77bdc5f Additional error checks for issuing the windows.appendAtomically warning (Additional error checks for issuing the windows.appendAtomically warning git#4528)
213: 59f3457 = 213: 7ddd870 win32: use native ANSI sequence processing, if possible (win32: use native ANSI sequence processing, if possible git#4700)
214: 8978f01 = 214: 7d919fc common-main.c: fflush stdout buffer when exit (common-main.c: fflush stdout buffer when exit git#4901)
215: 5c0cd9d = 215: e0ac249 Merge branch 'run-t5601-and-t7406-with-symlinks-on-windows-10'
216: b20b9bb = 216: 7382c14 Merge branch 'Fallback-to-AppData-if-XDG-CONFIG-HOME-is-unset'
217: 23bfee5 = 217: a636183 Merge branch 'run-command-be-helpful-when-Git-LFS-fails-on-Windows-7'
218: ffb9f4b = 218: 66e94cb Add path walk API and its use in 'git pack-objects' (Add path walk API and its use in 'git pack-objects' git#5171)
219: 261dc3f = 219: 5dcb572 Add experimental 'git survey' builtin (Add experimental 'git survey' builtin git#5174)
220: 1f7c890 = 220: 8c2310b credential-cache: handle ECONNREFUSED gracefully (credential-cache: handle ECONNREFUSED gracefully git#5329)
221: d535f1f = 221: b1f1481 Merge branch 'reftable-vs-custom-allocators'
222: cdc085f = 222: 4ae8ec9 Merge branch 'check-whitespace-only-downstream'
223: 536befd = 223: 0a9a66d t/t5571-prep-push-hook.sh: Add test with writing to stderr (t/t5571-prep-push-hook.sh: Add test with writing to stderr git#6063)
224: 3b5ee2f = 224: a9fc5f9 Merge branch 'disallow-ntlm-auth-by-default'
225: a7b7d0a = 225: a593687 Don't traverse mount points in
remove_dir_recurse()(Don't traverse mount points inremove_dir_recurse()git#6151)226: fa521d7 = 226: 7140540 Detect number of cores better on multi-socket systems (Detect number of cores better on multi-socket systems git#6108)
227: ca14913 = 227: 7ca4476 http: fix emptyAuth=auto for Negotiate/SPNEGO (http: fix emptyAuth=auto for Negotiate/SPNEGO git#6170)
228: 7b19adb = 228: 2eafd35 entry: flush fscache after creating directories and writing files (entry: flush fscache after creating directories and writing files git#6250)
229: 660e08e = 229: 4926b1f ci(macos): skip the
git p4tests (ci(macos): skip thegit p4tests git#5954)230: d5fdb5b = 230: faecd4e Merge branch 'msys2'
231: bec3c22 = 231: 29a2963 Merge 'docker-volumes-are-no-symlinks'
232: ee44cd0 = 232: d842465 mingw: try resetting the read-only bit if rename fails (Reset READONLY if rename fails git#4527)
233: ac19846 = 233: 1d9699c Merge pull request Specify symlink type in .gitattributes git#1897 from piscisaureus/symlink-attr
234: 41fcc03 = 234: 52a6973 Merge branch 'dont-clean-junctions'
235: ca67eae = 235: 5a59acb Merge branch 'wsl-file-mode-bits'
236: a541b6f = 236: c8b643b Merge branch 'validate-dotgit'
237: 766d8ce = 237: 42c1c8f Continue improving support for 4GB+ packs/clones/objects (Continue improving support for 4GB+ packs/clones/objects git#6289)
238: ce61c6e = 238: c9e9c1d Merge branch 'skip-rust-in-the-coverity-builds'
239: ecc82c1 = 239: e3e194d Merge branch 'ready-for-upstream'
240: 4e98871 = 240: bb2717d Win32: make FILETIME conversion functions public
241: 1080f68 = 241: 19ee7cd Win32: dirent.c: Move opendir down
242: 40f80d0 = 242: ae539c9 mingw: make the dirent implementation pluggable
258: 2541779 = 243: 8207a59 git-gui--askyesno: fix funny text wrapping
243: 5ebb74a = 244: b0214f2 Win32: make the lstat implementation pluggable
260: 74fc34d = 245: 8beec78 git-gui--askyesno (mingw): use Git for Windows' icon, if available
244: bd94a78 = 246: b6e3df3 mingw: add infrastructure for read-only file system level caches
245: af07c8c = 247: e019fe0 mingw: add a cache below mingw's lstat and dirent implementations
246: e6c127b = 248: 4704f28 fscache: load directories only once
247: 2c23f08 = 249: 3dc1c3e fscache: add key for GIT_TRACE_FSCACHE
248: da40616 = 250: 98604c5 fscache: remember not-found directories
249: 72c0c42 = 251: 69d2245 fscache: add a test for the dir-not-found optimization
250: 711e29a = 252: 16cd1af add: use preload-index and fscache for performance
251: 38f2409 = 253: 221f021 dir.c: make add_excludes aware of fscache during status
252: eb95c3b = 254: e820cae fscache: make fscache_enabled() public
253: 54fc981 = 255: 7d2deba dir.c: regression fix for add_excludes with fscache
254: 05c0422 = 256: 1ca9fcd fetch-pack.c: enable fscache for stats under .git/objects
255: 88b72c0 = 257: b5df7c4 checkout.c: enable fscache for checkout again
256: 3c74fd7 = 258: b8d59cc Enable the filesystem cache (fscache) in refresh_index().
257: 3c4cba1 = 259: 1206b51 fscache: use FindFirstFileExW to avoid retrieving the short name
259: cf10ada = 260: 8395839 fscache: add GIT_TEST_FSCACHE support
261: cd2fc25 = 261: 8751a4d fscache: add fscache hit statistics
262: 0a87194 = 262: e8ddf44 unpack-trees: enable fscache for sparse-checkout
263: 9cc9d1e = 263: 5824b2d status: disable and free fscache at the end of the status command
264: b8ab7b5 = 264: acc8950 mem_pool: add GIT_TRACE_MEMPOOL support
265: b8b50ad = 265: 8337a5e fscache: fscache takes an initial size
266: e696e22 = 266: de90928 fscache: update fscache to be thread specific instead of global
267: c3e0a57 = 267: 9ff13da fscache: teach fscache to use mempool
268: 5f07ade = 268: dd2e2b2 fscache: make fscache_enable() thread safe
269: 1d2856f = 269: fe682e9 fscache: teach fscache to use NtQueryDirectoryFile
270: 48fdcb4 = 270: c77045f fscache: remember the reparse tag for each entry
271: 4b22296 = 271: 5741aea fscache: Windows Docker volumes are not symbolic links
272: 13ffe1b = 272: c935e98 fscache: optionally enable wsl compability file mode bits
273: 9c5d730 = 273: b7e9580 Merge branch 'fscache'
274: 01d9d60 = 274: c74714d fscache: implement an FSCache-aware is_mount_point()
275: f9deb85 = 275: 5f05593 Merge pull request status: disable and free fscache at the end of the status command git#1909 from benpeart/free-fscache-after-status-gfw
276: 4ccd670 = 276: 8baf550 clean: make use of FSCache
277: 092cc32 = 277: 1d0b2df Merge remote-tracking branch 'benpeart/fscache-per-thread-gfw'
278: fb24cc0 = 278: 1bc80c6 Merge branch 'dont-clean-junctions-fscache'
279: eef3bbf = 279: 539196a pack-objects (mingw): demonstrate a segmentation fault with large deltas
280: 75d4f19 = 280: b6f844f mingw: support long paths
281: f20f19f = 281: 7a56d82 win32(long path support): leave drive-less absolute paths intact
282: c059dd6 = 282: 3ce1b5b compat/fsmonitor/fsm-*-win32: support long paths
283: b8bdc58 = 283: 22de74f clean: suggest using
core.longPathsif paths are too long to remove284: d89218a = 284: bb94c78 mingw: explicitly specify with which cmd to prefix the cmdline
285: 66d5765 = 285: 72666cf mingw: when path_lookup() failed, try BusyBox
286: 9b04720 = 286: db3302f test-tool: learn to act as a drop-in replacement for
iconv287: 0c2d97b = 287: 580c57c tests(mingw): if
iconvis unavailable, usetest-helper --iconv288: 400d67b = 288: d0f9482 gitattributes: mark .png files as binary
289: 28a18ae = 289: e6ec46f tests: move test PNGs into t/lib-diff/
290: a84f89f = 290: 549e042 tests: only override sort & find if there are usable ones in /usr/bin/
291: 6e1d4e4 = 291: 7be49fa tests: use the correct path separator with BusyBox
292: 3d3bcc8 = 292: 8f25945 mingw: only use Bash-ism
builtin pwd -Wwhen available293: a103154 = 293: d05245d tests (mingw): remove Bash-specific pwd option
294: 6468397 = 294: a11f467 test-lib: add BUSYBOX prerequisite
295: 7725a2e = 295: 44fbfe6 t5003: use binary file from t/lib-diff/
296: ec691a6 = 296: 547d6c5 t5532: workaround for BusyBox on Windows
297: 5f6527c = 297: 707f77a t5605: special-case hardlink test for BusyBox-w32
298: 7572ecd = 298: 90da29c t5813: allow for $PWD to be a Windows path
299: bcbebe0 = 299: f89a595 t9200: skip tests when $PWD contains a colon
300: 17bc5a0 = 300: 22925f3 Describe Git for Windows' architecture
301: eacb7b4 = 301: 4228a4a Add an AGENTS.md file to help with AI-assisted debugging/development
302: bf910ab = 302: 4475a6b Modify the Code of Conduct for Git for Windows
304: 8451d01 = 303: 959d5bf CONTRIBUTING.md: add guide for first-time contributors
306: 1806932 = 304: 29ce978 README.md: Add a Windows-specific preamble
309: 3346019 = 305: 6f1c8dd Add an issue template
312: 4ce55bd = 306: ec86da4 Modify the GitHub Pull Request template (to reflect Git for Windows)
313: db4b775 = 307: d9f19f7 Add a GitHub workflow to monitor component updates
316: 60541b4 = 308: bdc2230 SECURITY.md: document Git for Windows' policies
303: 125468e = 309: 8b76e5e Merge branch 'gitk-and-git-gui-patches'
307: 7a96186 = 310: 24115d2 Partially un-revert "editor: save and reset terminal after calling EDITOR"
310: 1658ca3 = 311: ede69d7 reset: reinstate support for the deprecated --stdin option
314: a2d2fec = 312: 940e1a9 fsmonitor: reintroduce core.useBuiltinFSMonitor
317: 07fd698 = 313: 40dbd3e dependabot: help keeping GitHub Actions versions up to date
319: 6d972cc = 314: fd586e2 ci: only run the expensive tests in the Windows tests for now
305: d4168b8 = 315: 72d3470 Merge branch 'long-paths'
308: b51a3ea = 316: ef382c3 Merge branch 'busybox-w32'
311: e8cf09f = 317: db96bad Merge branch 'un-revert-editor-save-and-reset'
315: 21cf09c = 318: b50db95 Merge branch 'phase-out-reset-stdin'
318: 70e752b = 319: fe547fa Merge branch 'deprecate-core.useBuiltinFSMonitor'
320: b497c58 = 320: 4a33951 Merge pull request Start monitoring updates of Git for Windows' components in the open git#2837 from dscho/monitor-component-updates
321: 22fe6c5 = 321: 32ffe14 Merge 'readme' into HEAD
322: 06cb5b7 = 322: 4aafd03 build(deps): bump actions/cache from 5 to 6
323: 7c31d7e = 323: 938faba build(deps): bump actions/cache from 5 to 6 (build(deps): bump actions/cache from 5 to 6 git#6303)
324: aa50eaf ! 324: e38c559 Some amendments for the
hashliteral_tsize fixes (Some amendments for thehashliteral_tsize fixes git#6311)325: 90e1e62 = 325: 479ccc4 repo: split annotated tags out from total tag count in structure
326: b93260e = 326: d07d463 repo: filter the structure scope via --ref-filter=
327: 7c9168f = 327: 2daa8a1 repo: report top-N paths by count, disk, and inflated size in structure
328: 77439f2 = 328: 091aa68 t1901: cover the --top option of
git repo structure329: bcdb7dc = 329: c5b9807 repo: read the
--topdefault fromrepo.structure.top330: 2e47323 = 330: f6c7ec0 git-survey: announce the upcoming pivot into
git repo structure331: c534681 = 331: ec04d13 survey: turn into a thin shim over
git repo structure332: 466a00d = 332: bd03686 Turn
git surveyinto a deprecated shim overgit repo structure(Turngit surveyinto a deprecated shim overgit repo structuregit#6268)333: 730ff31 = 333: abd644f fixup! run-command: be helpful with Git LFS fails on Windows 7
334: d116627 = 334: eef11d6 Drop Windows 7 support (Drop Windows 7 support git#6325)
335: cd8f3be = 335: 2d5e463 Merge tag 'v2.55.0.windows.3'
Truncated; see the full conflict report in the workflow run summary.