Rebase shears/next: 1 conflict(s) (0 skipped, 1 resolved) (#29219414100)#300
Open
gitforwindowshelper[bot] wants to merge 340 commits into
Open
Rebase shears/next: 1 conflict(s) (0 skipped, 1 resolved) (#29219414100)#300gitforwindowshelper[bot] wants to merge 340 commits into
gitforwindowshelper[bot] wants to merge 340 commits into
Conversation
Signed-off-by: Derrick Stolee <stolee@gmail.com>
In future changes, we will make use of these methods. The intention is to keep track of the top contributors according to some metric. We don't want to store all of the entries and do a sort at the end, so track a constant-size table and remove rows that get pushed out depending on the chosen sorting algorithm. Co-authored-by: Jeff Hostetler <git@jeffhostetler.com> Signed-off-by; Jeff Hostetler <git@jeffhostetler.com> Signed-off-by: Derrick Stolee <stolee@gmail.com>
Since we are already walking our reachable objects using the path-walk API,
let's now collect lists of the paths that contribute most to different
metrics. Specifically, we care about
* Number of versions.
* Total size on disk.
* Total inflated size (no delta or zlib compression).
This information can be critical to discovering which parts of the
repository are causing the most growth, especially on-disk size. Different
packing strategies might help compress data more efficiently, but the toal
inflated size is a representation of the raw size of all snapshots of those
paths. Even when stored efficiently on disk, that size represents how much
information must be processed to complete a command such as 'git blame'.
The exact disk size seems to be not quite robust enough for testing, as
could be seen by the `linux-musl-meson` job consistently failing, possibly
because of zlib-ng deflates differently: t8100.4(git survey
(default)) was failing with a symptom like this:
TOTAL OBJECT SIZES BY TYPE
===============================================
Object Type | Count | Disk Size | Inflated Size
------------+-------+-----------+--------------
- Commits | 10 | 1523 | 2153
+ Commits | 10 | 1528 | 2153
Trees | 10 | 495 | 1706
Blobs | 10 | 191 | 101
- Tags | 4 | 510 | 528
+ Tags | 4 | 547 | 528
This means: the disk size is unlikely something we can verify robustly.
Since zlib-ng seems to increase the disk size of the tags from 528 to
547, we cannot even assume that the disk size is always smaller than the
inflated size. We will most likely want to either skip verifying the
disk size altogether, or go for some kind of fuzzy matching, say, by
replacing `s/ 1[45][0-9][0-9] / ~1.5k /` and `s/ [45][0-9][0-9] / ~½k /`
or something like that.
Signed-off-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The winsock2 library provides functions that work on different data types than file descriptors, therefore we wrap them. But that is not the only difference: they also do not set `errno` but expect the callers to enquire about errors via `WSAGetLastError()`. Let's translate that into appropriate `errno` values whenever the socket operations fail so that Git's code base does not have to change its expectations. This closes git-for-windows#2404 Helped-by: Jeff Hostetler <jeffhost@microsoft.com> 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>
We map WSAGetLastError() errors to errno errors in winsock_error_to_errno(), but the MSVC strerror() implementation only produces "Unknown error" for most of them. Produce some more meaningful error messages in these cases. Our builds for ARM64 link against the newer UCRT strerror() that does know these errors, so we won't change the strerror() used there. The wording of the messages is copied from glibc strerror() messages. Reported-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>
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>
Preparation for widening the delta-encoding API to size_t in subsequent commits, which is what lets pack-objects drop the cast_size_t_to_ulong() shims that 606c192 (odb, packfile: use size_t for streaming object sizes, 2026-05-08) had to leave behind in get_delta() and try_delta() because their downstream consumers were still narrow. The struct is private to diff-delta.c, so widening its fields in isolation is a no-op at runtime: the values stored continue to fit in 32 bits on Windows because the public API around it still truncates. Splitting it out keeps the API-change commit focused on caller updates. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The sole caller (try_delta() in builtin/pack-objects.c) passes an unsigned long, which promotes safely, so no caller fixups are needed. Splitting it out keeps the diff_delta() / create_delta() widening, which does ripple to several callers, in its own commit. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
These three are a single accounting tuple (the globals tracking cumulative cached-delta bytes, plus the helper that compares them against an incoming delta size) and are latently 32-bit on Windows where unsigned long != size_t: a pack with many large cached deltas could wrap silently. The widening is internally consistent on its own: the additions and subtractions against delta_cache_size already come from size_t sources (DELTA_SIZE() returns size_t), and delta_cacheable()'s sole caller in try_delta() still passes unsigned long, which promotes. Prerequisite for dropping try_delta()'s cast_size_t_to_ulong() shims, which becomes possible once create_delta() and diff_delta() are widened in a later commit. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
free_unpacked() sums two byte counts: sizeof_delta_index() and SIZE(n->entry). The latter has been size_t since the prior topic "More work supporting objects larger than 4GB on Windows" widened SIZE() / oe_size() to size_t, so accumulating it into an unsigned long return was a silent Windows-only truncation on a packing run with many large objects. The sole caller (find_deltas()) holds its own mem_usage in an unsigned long for now and subtracts the return into it, so the new narrowing happens at that subtraction. find_deltas() and the matching try_delta() out-parameter are widened next. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The pair must move together because find_deltas() passes &mem_usage to try_delta(): widening either alone breaks the type match. mem_usage accumulates per-object byte counts already computed in size_t (SIZE() and sizeof_delta_index() reach here through free_unpacked(), now size_t), and was the last 32-bit-on-Windows narrowing point in the delta-window memory accounting chain. With this commit, that chain is internally size_t end-to-end except for sizeof_delta_index()'s still-narrow return, whose value is bounded by create_delta_index()'s entries cap. window_memory_limit (config-driven via git_config_ulong()) stays unsigned long: it is only compared against mem_usage and promotes. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Last stop in the delta-encoding API widening for >4 GiB blobs on
Windows: with create_delta_index() done in the prior commit and
create_delta()/diff_delta() finished here, every byte count that
crosses delta.h is now size_t. The struct fields they store into
have been size_t since the diff-delta struct widening.
The API change must move with all callers in the same commit (the
build only passes when every &delta_size matches the new size_t*).
Caller updates are kept minimal:
* builtin/pack-objects.c get_delta() and try_delta(): widen only
the local delta_size variable; the surrounding unsigned-long
locals and their cast_size_t_to_ulong() shims are out of scope
here and will be cleaned up in their own commits.
* builtin/fast-import.c, diff.c, t/helper/test-pack-deltas.c:
keep the local unsigned-long delta size (each feeds a still-
unsigned-long downstream consumer: zlib's avail_in,
deflate_it(), the test helper's own do_compress()), and bridge
via a temporary size_t plus cast_size_t_to_ulong(). The new
casts are paid back in later topics that widen those consumers.
* t/helper/test-delta.c: widen the local outright (no downstream
consumer beyond the test's own out_size, which is already
size_t).
Assisted-by: Opus 4.7
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Bundling the two widenings: four call sites pass &stream.avail_in directly to use_pack(), and widening either type fencepost alone would force a bridge variable at each. Doing both together is the simpler end state and is the prerequisite for the do_compress() widening in the next commit, which is what lets write_no_reuse_object() lose its last cast_size_t_to_ulong() shim. The unsigned-long locals widened at the other use_pack() callers (avail / remaining / left) hold pack-window sizes bounded by core.packedGitWindowSize, so the change is type consistency rather than a new >4GB capability. git_zstream.avail_in / avail_out likewise reach zlib's uInt fields only after zlib_buf_cap()'s 1 GiB cap, so the wrapper already accepted size_t-shaped inputs in practice. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Prep for the upcoming git_deflate_bound() widening to size_t: the local that catches its return needs to be size_t too, otherwise the widening would introduce a silent Windows narrowing here. No semantic effect with the current unsigned-long-returning git_deflate_bound() (size_t == unsigned long on this caller's platforms today). Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Fixes a pre-existing silent narrowing from git_deflate_bound()'s unsigned long return into an int local: anything past 2 GiB has always wrapped negative here and then been re-extended to size_t inside xmalloc(). Also prep for the upcoming git_deflate_bound() widening to size_t, which would extend the narrowing further if bound stayed int. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Although NTLM authentication is considered weak (extending even to
NTLMv2, which purportedly allows brute-forcing reasonably complex
8-character passwords in a matter of days, given ample compute
resources), it _is_ one of the authentication methods supported by
libcurl.
Note: The added test case *cannot* reuse the existing `custom_auth`
facility. The reason is that that facility is backed by an NPH script
("No Parse Headers"), which does not allow handling the 3-phase NTLM
authentication correctly (in my hands, the NPH script would not even be
called upon the Type 3 message, a "200 OK" would be returned, but no
headers, let alone the `git http-backend` output as payload). Having a
separate NTLM authentication script makes the exact workings clearer and
more readable, anyway.
Co-authored-by: Matthew John Cheetham <mjcheetham@outlook.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This will come in handy in the next commit. Signed-off-by: JiSeop Moon <zcube@zcube.kr> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Bert Belder <bertbelder@gmail.com>
The local is initialised from git_deflate_bound() (an unsigned upper bound on the deflated output, never negative) and used in exactly three places: the initialising assignment, strbuf_grow(buf, size) whose parameter is already size_t, and stream.avail_out which became size_t in the prior commit. There is no comparison against zero or a negative value, no subtraction, no arithmetic that depends on signedness, and no path that would assign a signed quantity to it. The original ssize_t was the wrong type to begin with: a git_deflate_bound() result above SSIZE_MAX would have wrapped negative on assignment and then implicitly re-extended to a huge size_t at strbuf_grow() / stream.avail_out, requesting an absurd allocation. That is not a real-world concern for the object sizes http-push pushes today, but it is also the reason the type needs to move to size_t before git_deflate_bound() itself is widened. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This comment has been true for the longest time; The combination of the two preceding commits made it incorrect, so let's drop that comment. Signed-off-by: Matthias Aßhauer <mha1993@live.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
NTLM authentication is relatively weak. This is the case even with the
default setting of modern Windows versions, where NTLMv1 and LanManager
are disabled and only NTLMv2 is enabled: NTLMv2 hashes of even
reasonably complex 8-character passwords can be broken in a matter of
days, given enough compute resources.
Even worse: On Windows, NTLM authentication uses Security Support
Provider Interface ("SSPI"), which provides the credentials without
requiring the user to type them in.
Which means that an attacker could talk an unsuspecting user into
cloning from a server that is under the attacker's control and extracts
the user's NTLMv2 hash without their knowledge.
For that reason, let's disallow NTLM authentication by default.
NTLM authentication is quite simple to set up, though, and therefore
there are still some on-prem Azure DevOps setups out there whose users
and/or automation rely on this type of authentication. To give them an
escape hatch, introduce the `http.<url>.allowNTLMAuth` config setting
that can be set to `true` to opt back into using NTLM for a specific
remote repository.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The `git_terminal_prompt()` function expects the terminal window to be attached to a Win32 Console. However, this is not the case with terminal windows other than `cmd.exe`'s, e.g. with MSys2's own `mintty`. Non-cmd terminals such as `mintty` still have to have a Win32 Console to be proper console programs, but have to hide the Win32 Console to be able to provide more flexibility (such as being resizeable not only vertically but also horizontally). By writing to that Win32 Console, `git_terminal_prompt()` manages only to send the prompt to nowhere and to wait for input from a Console to which the user has no access. This commit introduces a function specifically to support `mintty` -- or other terminals that are compatible with MSys2's `/dev/tty` emulation. We use the `TERM` environment variable as an indicator for that: if the value starts with "xterm" (such as `mintty`'s "xterm_256color"), we prefer to let `xterm_prompt()` handle the user interaction. The most prominent user of `git_terminal_prompt()` is certainly `git-remote-https.exe`. It is an interesting use case because both `stdin` and `stdout` are redirected when Git calls said executable, yet it still wants to access the terminal. When running inside a `mintty`, the terminal is not accessible to the `git-remote-https.exe` program, though, because it is a MinGW program and the `mintty` terminal is not backed by a Win32 console. To solve that problem, we simply call out to the shell -- which is an *MSys2* program and can therefore access `/dev/tty`. Helped-by: nalla <nalla@hamal.uberspace.de> Signed-off-by: Karsten Blees <blees@dcon.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
It is a known issue that a rename() can fail with an "Access denied" error at times, when copying followed by deleting the original file works. Let's just fall back to that behavior. Signed-off-by: JiSeop Moon <zcube@zcube.kr> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
On Windows, symbolic links actually have a type depending on the target: it can be a file or a directory. In certain circumstances, this poses problems, e.g. when a symbolic link is supposed to point into a submodule that is not checked out, so there is no way for Git to auto-detect the type. To help with that, we will add support over the course of the next commits to specify that symlink type via the Git attributes. This requires an index_state, though, something that Git for Windows' `symlink()` replacement cannot know about because the function signature is defined by the POSIX standard and not ours to change. So let's introduce a helper function to create symbolic links that *does* know about the index_state. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Prep for the upcoming git_deflate_bound() widening to size_t. The local is only ever the return value of git_deflate_bound() and the xmalloc() / stream.avail_out sizes derived from it; widening it has no semantic effect today. Assisted-by: Opus 4.7 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>
The Git for Windows project has grown quite complex over the years, certainly much more complex than during the first years where the `msysgit.git` repository was abusing Git for package management purposes and the `git/git` fork was called `4msysgit.git`. Let's describe the status quo in a thorough way. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In this time and age, AI is everywhere. However, it's sometimes not very easy to use. For green-field projects it works quite a bit better than for existing legacy projects. And Git's source code is _quite_ as legacy code as they come... 😁 Now, the only way how AI can be used efficiently with legacy code is by providing enough information by way of prompt context for the AI to have a chance to make any sense of the code. The structure and the architecture is, after all, not designed for AI, but rather the opposite: By virtue of having grown organically over two decades, there is no design that AI coding models would readily grasp. So here is a document that describes all kinds of aspects about this project. The idea is to help AI by providing information that it does not have ingrained in its weights. The idea is to provide information that a human prompter might take for granted, but no coding model will have been trained on specifically. Assisted-by: Claude Opus 4.5 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The Git project followed Git for Windows' lead and added their Code of Conduct, based on the Contributor Covenant v1.4, later updated to v2.0. We adapt it slightly to Git for Windows. 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>
Getting started contributing to Git can be difficult on a Windows machine. CONTRIBUTING.md contains a guide to getting started, including detailed steps for setting up build tools, running tests, and submitting patches to upstream. [includes an example by Pratik Karki how to submit v2, v3, v4, etc.] Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
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>
Includes touch-ups by 마누엘, Philip Oakley and 孙卓识. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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>
With improvements by Clive Chan, Adric Norris, Ben Bodenmiller and Philip Oakley. Helped-by: Clive Chan <cc@clive.io> Helped-by: Adric Norris <landstander668@gmail.com> Helped-by: Ben Bodenmiller <bbodenmiller@hotmail.com> Helped-by: Philip Oakley <philipoakley@iee.org> Signed-off-by: Brendan Forster <brendan@github.com> 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>
`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>
Git for Windows accepts pull requests; Core Git does not. Therefore we need to adjust the template (because it only matches core Git's project management style, not ours). Also: direct Git for Windows enhancements to their contributions page, space out the text for easy reading, and clarify that the mailing list is plain text, not HTML. Signed-off-by: Philip Oakley <philipoakley@iee.org> 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>
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>
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>
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>
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>
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>
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>
`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>
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>
…updates Start monitoring updates of Git for Windows' component in the open
`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>
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>
`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>
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>
…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`.
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: next
From: 94b70e6aa2 (Turn
git surveyinto a deprecated shim overgit repo structure(git-for-windows#6268), 2026-07-08) (011ab184e3..94b70e6aa2)Resolved: 5405576 (run-command: be helpful with Git LFS fails on Windows 7, 2024-07-04)
kept both HEAD's #include "repository.h" and REBASE_HEAD's wrapper/strbuf/versioncmp includes
Range-diff
1: 5405576 ! 1: 3d8bbfa run-command: be helpful with Git LFS fails on Windows 7
To: ddaf3bea49 (Turn
git surveyinto a deprecated shim overgit repo structure(git-for-windows#6268), 2026-07-08) (1767c9ecfd..ddaf3bea49)Statistics
Range-diff (click to expand)
1: f0ea398 = 1: 8bbf494 mingw: skip symlink type auto-detection for network share targets
3: 0c35177 = 2: 1f7c57a unix-socket: avoid leak when initialization fails
2: 3fa53c1 = 3: a0849a3 Merge branch 'prevent-accidental-ntlm-exfiltration-via-symlinks'
4: c3b3fb2 = 4: 3a4bf31 grep: prevent
^$false match at end of file5: db7c2d1 = 5: 86f4b42 Merge branch 'v2.53.0.windows.3'
6: 1581a30 = 6: 78fb7ca Merge branch 'fixes-from-the-git-mailing-list'
7: 090cfe7 = 7: 7d05c0d ci(vs-build): adapt to Visual Studio 2026 default on windows-latest
8: 069212a = 8: 6662e70 vcpkg_install: detect lack of Git
9: d98478e = 9: 5c7186a vcpkg_install: add comment regarding slow network connections
10: 4c40e99 = 10: 90b09b6 vcbuild: install ARM64 dependencies when building ARM64 binaries
11: ebb151d = 11: ee0c816 vcbuild: add an option to install individual 'features'
12: f1a2f2a = 12: 606ed51 cmake: allow building for Windows/ARM64
14: 59c280c = 13: 3d08d47 ci(vs-build) also build Windows/ARM64 artifacts
18: a792ecc = 14: 0975fa4 vcbuild: stop hard-coding OpenSSL as a dependency
23: 2d6a7d2 = 15: 7c8a4c8 cmake(): allow setting HOST_CPU for cross-compilation
13: b2259a6 = 16: 354193f t9350: point out that refs are not updated correctly
56: 9e5fdee = 17: aaed673 CMake: default Visual Studio generator has changed
15: a826577 = 18: f67d276 transport-helper: add trailing --
16: b65b985 = 19: 4356634 mingw: demonstrate a
git addissue with NTFS junctions59: 4575159 = 20: 0513a87 .gitignore: add Visual Studio CMakeSetting.json file
21: 43a5671 = 21: 59ec0df mingw: include the Python parts in the build
17: 38783ac = 22: 4914eac t5505/t5516: allow running without
.git/branches/in the templates19: 904b318 = 23: 158ba3f remote-helper: check helper status after import/export
20: b032600 = 24: da2d7ec strbuf_realpath(): use platform-dependent API if available
24: 407ac0c = 25: 3ff8e53 http: use new "best effort" strategy for Secure Channel revoke checking
62: 144704d = 26: 814a9c5 subtree: update
contrib/subtreetesttarget63: 45b2761 = 27: 26dab4e CMakeLists: add default "x64-windows" arch for Visual Studio
64: b45dec1 = 28: a7bd9e6 setup: properly use "%(prefix)/" when in WSL
65: 6286318 = 29: 8019bec Add config option
windows.appendAtomically37: 83013af = 30: 8337a91 windows: skip linking
git-<command>for built-ins22: cc77a1e = 31: 0e38d5b t5505/t5516: fix white-space around redirectors
55: e7d3eaa = 32: 12a4834 MinGW: link as terminal server aware
25: cfbd506 = 33: efbd781 ci: bump actions/checkout from 6 to 7
26: 587ae70 = 34: 5cf48fd Always auto-gc after calling a fast-import transport
27: 0ef40bf = 35: 08d5c43 mingw: prevent regressions with "drive-less" absolute paths
28: 4bb5e21 = 36: f122921 transport: optionally disable side-band-64k
29: 92e42fd = 37: 019bc33 mingw: fix fatal error working on mapped network drives on Windows
30: 8bf7efd = 38: 3c744de clink.pl: fix MSVC compile script to handle libcurl-d.lib
31: 6219192 = 39: c1f3402 mingw: implement a platform-specific
strbuf_realpath()32: 1260b52 = 40: 100ce20 t3701: verify that we can add lots of files interactively
33: abc3b1e = 41: 8c21c44 commit: accept "scissors" with CR/LF line endings
34: 2d7c451 = 42: 7df1f56 t0014: fix indentation
35: 505bea6 = 43: 98450b1 git-gui: accommodate for intent-to-add files
36: d2ffaf6 = 44: e9eea97 mingw: allow for longer paths in
parse_interpreter()69: 42ede60 = 45: 846a584 compat/vcbuild: document preferred way to build in Visual Studio
70: 8c2daa8 = 46: 00ca3d5 http: optionally send SSL client certificate
71: 0861a90 = 47: 72bf63d ci: run
contrib/subtreetests in CI builds72: 128273b = 48: a6c413f CMake: show Win32 and Generator_platform build-option values
73: a3c8917 = 49: 3a8bc3a compat/mingw.c: do not warn when failing to get owner
74: 9d494f8 = 50: 4e764a8 mingw: $env:TERM="xterm-256color" for newer OSes
75: ddc0df7 = 51: 7ecc4b1 winansi: check result and Buffer before using Name
76: cb35090 = 52: 4b333bb mingw: change core.fsyncObjectFiles = 1 by default
77: 58d3a42 = 53: 3309e68 Fix Windows version resources
78: 24becf5 = 54: 19e4713 status: fix for old-style submodules with commondir
38: 1ca7a92 = 55: e825ec8 mingw: stop hard-coding
CC = gcc39: a588176 = 56: 2e0f336 mingw: drop the -D_USE_32BIT_TIME_T option
40: 84069a7 = 57: d608dc3 mingw: only use -Wl,--large-address-aware for 32-bit builds
41: 63eed90 = 58: 3bca056 mingw: avoid over-specifying
--pic-executable42: 833cb77 = 59: 7407114 mingw: set the prefix and HOST_CPU as per MSYS2's settings
43: c62f94b = 60: 8fa709f mingw: only enable the MSYS2-specific stuff when compiling in MSYS2
44: daef7c5 = 61: f5827d1 mingw: rely on MSYS2's metadata instead of hard-coding it
45: c36c437 = 62: 9b7511f mingw: always define
ETC_*for MSYS2 environments46: 87c0d6f = 63: 68d8130 max_tree_depth: lower it for clang builds in general on Windows
47: a403e8f = 64: f766a2a mingw: ensure valid CTYPE
48: ce31fbe = 65: a418678 mingw: allow
git.exeto be used instead of the "Git wrapper"49: ee64a12 = 66: 34d1c49 mingw: ignore HOMEDRIVE/HOMEPATH if it points to Windows' system directory
50: ace2c44 = 67: 06ff2c4 Merge branch 'dscho-avoid-d-f-conflict-in-vs-master'
51: b874f27 = 68: ea58efc clink.pl: fix libexpatd.lib link error when using MSVC
52: 4afb055 = 69: c6c2861 Makefile: clean up .ilk files when MSVC=1
53: c854ce2 = 70: a204441 vcbuild: add support for compiling Windows resource files
54: 03116c8 = 71: fce0a74 config.mak.uname: add git.rc to MSVC builds
57: 7d618c6 = 72: 2535904 clink.pl: ignore no-stack-protector arg on MSVC=1 builds
58: 8f451b4 = 73: 26e0598 http: optionally load libcurl lazily
60: 3ce4268 = 74: 7d0a8de clink.pl: move default linker options for MSVC=1 builds
61: 517c9a8 = 75: d53c485 http: support lazy-loading libcurl also on Windows
66: 4bd8a31 = 76: 92a461b cmake: install headless-git.
67: 67236e8 = 77: 901d3f0 http: when loading libcurl lazily, allow for multiple SSL backends
79: 89c0543 = 78: ffa683a git.rc: include winuser.h
80: 60b4026 = 79: ae900f0 mingw: do load libcurl dynamically by default
81: e98c202 = 80: 43348b5 Add a GitHub workflow to verify that Git/Scalar work in Nano Server
82: e1fe145 = 81: 090d357 mingw: suggest
windows.appendAtomicallyin more cases83: e71d65e = 82: 90218f8 win32: use native ANSI sequence processing, if possible
84: 681349f = 83: 3e8f600 common-main.c: fflush stdout buffer upon exit
85: 1660a3f = 84: 33b2643 t5601/t7406(mingw): do run tests with symlink support
86: 28f4610 = 85: 05e1e5d Fallback to AppData if XDG_CONFIG_HOME is unset
68: 1c8775a = 86: 1bf2a05 revision: create mark_trees_uninteresting_dense()
88: e1f155b = 87: 3586566 survey: stub in new experimental 'git-survey' command
89: 05c7355 = 88: 7916d92 survey: add command line opts to select references
90: a6d124d = 89: 38eb705 survey: start pretty printing data in table form
92: 9159362 = 90: 45947ad survey: add object count summary
94: e9e5476 = 91: 7899cf9 survey: summarize total sizes by object type
96: a867e42 = 92: 98bc7a0 survey: show progress during object walk
100: 9d09933 = 93: ddd52af survey: add ability to track prioritized lists
104: 21328a2 = 94: 4aa0d25 survey: add report of "largest" paths
97: a036a73 = 95: 12bd0be mingw: make sure
errnois set correctly when socket operations fail108: 4afbf0a = 96: b7f9c8d survey: add --top= option and config
101: 21ab1fa = 97: 4bc07b0 compat/mingw: handle WSA errors in strerror
87: 5405576 ! 98: 3d8bbfa run-command: be helpful with Git LFS fails on Windows 7
112: 78af5df = 99: 70e75a8 survey: clearly note the experimental nature in the output
122: 6ad430c = 100: 83dd72d diff-delta: widen struct delta_index size fields to size_t
123: 7753117 = 101: cf6df4a delta: widen create_delta_index() parameter to size_t
124: 96eef0a = 102: 33eb550 pack-objects: widen delta-cache accounting to size_t
125: c9fd877 = 103: b38ce06 pack-objects: widen free_unpacked() return to size_t
126: 4dbba62 = 104: 29ffcf4 pack-objects: widen mem_usage and try_delta out-param to size_t
91: a5cffb5 = 105: e5eefec mingw: Support
git_terminal_promptwith more terminals127: 56d16bb = 106: 35c87b8 delta: widen create_delta() and diff_delta() to size_t
93: 6410e3d = 107: a290115 compat/terminal.c: only use the Windows console if bash 'read -r' fails
128: 3e9b7c0 = 108: 52cd926 packfile, git-zlib: widen use_pack() and zstream avail fields to size_t
95: 5011406 = 109: 33fc639 mingw (git_terminal_prompt): do fall back to CONIN$/CONOUT$ method
129: ae0c220 = 110: 071df41 archive-zip: widen zlib_deflate_raw()'s maxsize local to size_t
138: 5427526 = 111: ecdfd8b Win32: symlink: move phantom symlink creation to a separate function
130: 41da3d4 = 112: c60ed64 diff: widen deflate_it()'s bound local from int to size_t
98: 0d245f9 = 113: de7874c t5563: verify that NTLM authentication works
99: 9bd7054 = 114: b027d06 mingw: introduce code to detect whether we're inside a Windows container
140: 6a26aab = 115: 82a2fd6 Introduce helper to create symlinks that knows about index_state
131: 4363250 = 116: 6cef074 http-push: widen start_put()'s size local from ssize_t to size_t
102: a1eced1 = 117: 2e52b5f http: disallow NTLM authentication by default
103: 3dafc68 = 118: 3e737cc mingw: when running in a Windows container, try to rename() harder
145: f3d348a = 119: 5d79f0a mingw: allow to specify the symlink type in .gitattributes
132: bcbbd7e = 120: 7c2f198 t/helper/test-pack-deltas: widen do_compress()'s maxsize local to size_t
105: 13bc3f6 = 121: 0c76fd5 compat/mingw: drop outdated comment
106: aabf4a2 = 122: 997f3cb http: warn if might have failed because of NTLM
107: 31d58eb = 123: 96d2dc5 mingw: move the file_attr_to_st_mode() function definition
149: 8508fcb = 124: 3295906 Win32: symlink: add test for
symlinkattribute133: 5d70fc9 = 125: f76a054 git-zlib: widen git_deflate_bound() to size_t
109: e8c4856 = 126: 8f1aded t0301: actually test credential-cache on Windows
110: c61efdb = 127: 6f0aa1a credential: advertise NTLM suppression and allow helpers to re-enable
111: d75e4c6 = 128: d0ed97b mingw: Windows Docker volumes are not symbolic links
153: 0518284 = 129: 74755da clean: do not traverse mount points
134: c357c10 = 130: 26701fe diff: stop truncating the deflated-binary-diff size on Windows
143: 592d18d = 131: 7e4fa22 pack-bitmap: stop truncating blob sizes used by --filter=blob:limit
113: 69086bb = 132: 86cf0bf credential-cache: handle ECONNREFUSED gracefully
114: 9fc3ef0 = 133: 6ca758e reftable: do make sure to use custom allocators
115: 7746722 = 134: e5b9a2d check-whitespace: avoid alerts about upstream commits
116: 9966d9c = 135: c909c5e t/t5571-prep-push-hook.sh: Add test with writing to stderr
117: b2f2ae2 = 136: fe70117 dir: do not traverse mount points
118: c9d5047 = 137: 61949b7 win32: thread-utils: handle multi-socket systems
119: 487d0b1 = 138: 0c65af4 t5563: add tests for http.emptyAuth with Negotiate
120: 05239b7 = 139: 67d9b42 entry: flush fscache after creating directories and writing files
121: b537217 = 140: 3bcc7a8 ci(macos): skip the
git p4tests162: 94c0159 = 141: 9219243 mingw: work around rename() failing on a read-only file
163: f122e2f = 142: 49b030c clean: remove mount points when possible
164: 6c575f7 = 143: 50f090d mingw: optionally enable wsl compability file mode bits
165: 4368427 = 144: 4d616c4 Refuse to follow invalid paths in
.gitfiles135: 10408cc = 145: f15e7ed convert: widen gather_convert_stats() helpers to size_t
136: 8fddec8 = 146: 9e78d7e read-cache: stop truncating index blob sizes on Windows
137: e3ef42f = 147: 818d8af xdiff-interface: widen buffer_is_binary() size parameter to size_t
139: 1b879f0 = 148: 4209c95 combine-diff: stop truncating combined-diff blob sizes on Windows
141: 08a7ceb = 149: 51d2496 tree-walk: drop link_len cast in get_tree_entry_follow_symlinks()
142: 3398557 = 150: 7547ff5 diff: widen textconv_object() size out-param to size_t
144: 2e811d6 = 151: ebb64ed Merge branch 'size-t/pack-objects-delta'
146: c61129b = 152: c15d59e tree-walk: widen init_tree_desc() and init_tree_desc_gently() to size_t
147: 47ded25 = 153: 65cb87d diffcore: widen struct diff_filespec.size to size_t
148: 306de16 = 154: fb44df7 Merge branch 'size-t/pack-bitmap'
150: 82f69df = 155: 1c1c9ed pack-objects: drop the two tree-walk casts in the preferred-base path
151: 9a37b12 = 156: e3de487 diff-delta: widen sizeof_delta_index() return to size_t
152: 097a13d = 157: 5d7e245 Merge branch 'size-t/diff'
154: 6e86519 = 158: d3c6c67 tree: widen struct tree.size and parse_tree_buffer() to size_t
155: b612f70 = 159: 0fb4971 Merge branch 'size-t/diff-delta-sizeof'
156: 1ba8d38 = 160: 219001f commit: widen the commit-buffer API to size_t
166: 2e2e3fb = 161: a7a17f4 Merge branch 'size-t/tree'
157: 288178b = 162: 8fe4570 blame: widen find_line_starts() len parameter to size_t
168: 8bb8061 = 163: 6ec57e0 Merge branch 'size-t/commit'
158: 0d22586 = 164: 2767f9e grep: widen struct grep_source.size and grep_buffer() to size_t
170: 767fbda = 165: 239b16d Merge branch 'size-t/blame'
159: 78fab6c = 166: 4c8ec33 fast-export: drop the export_blob() size cast and widen anonymize_blob()
172: f646858 = 167: a415c14 Merge branch 'size-t/grep'
160: 07a4892 = 168: 92c0c47 repo: drop the inflated-size cast in count_objects()
174: 066416b = 169: d131814 Merge branch 'size-t/fast-export'
161: 42fe8f0 = 170: 123ed2c unpack-objects: widen the size-passing infrastructure to size_t
176: 09f754e = 171: 5ad9ea3 Merge branch 'size-t/repo'
178: 1c841c1 = 172: 847f5f2 Merge branch 'size-t/unpack-objects'
180: efa564c = 173: 7d48336 Merge branch 'topic/size-t' into size-t-followups
182: c501a1d = 174: a0f2860 pack-objects: drop cast_size_t_to_ulong shims in get_delta()
184: 0fae631 = 175: a8f425a pack-objects: drop cast_size_t_to_ulong shims in try_delta()
186: dc95cbe = 176: 7eed21d pack-objects: drop the last size shim in write_no_reuse_object()
188: d3298aa = 177: 6872757 blame: widen struct blame_scoreboard.final_buf_size to size_t
190: bf39779 = 178: a0d1a59 fast-import: drop the six size casts in the object-read paths
192: 61573cd = 179: 1bd353e t/helper/test-pack-deltas: drop the delta_size cast in write_ref_delta()
194: c8e424c = 180: fe00e23 Drop the
cast_size_t_to_ulong()helper195: aeee147 = 181: a47c47e Merge branch 'topic/size-t' (size_t evacuation, upstream-bound)
167: 9611f9e = 182: 5441131 Merge branch 'bump-ci-actions/checkout-from-6-to-7'
169: e29fdd0 = 183: 5b5b67e Merge 'remote-hg-prerequisites' into HEAD
171: 0748aa3 = 184: 77dfde6 Merge branch 'drive-prefix'
173: dddbf10 = 185: 1d59750 Merge branch 'msys2-python'
175: 3ef2a31 = 186: 24d1a5e Merge pull request Config option to disable side-band-64k for transport git#2375 from assarbad/reintroduce-sideband-config
177: 250269e = 187: a189e6a Merge pull request mingw: fix fatal error working on mapped network drives on Windows git#2488 from bmueller84/master
179: 53b8575 = 188: 4ca4799 Merge pull request clink.pl: fix MSVC compile script to handle libcurl-d.lib git#2501 from jeffhostetler/clink-debug-curl
181: ad4c26b = 189: 2349e42 Merge pull request Handle
git add <file>where <file> traverses an NTFS junction git#2504 from dscho/access-repo-via-junction183: ad79dcc = 190: 43dc1de Merge pull request Introduce and use the new "best effort" strategy for Secure Channel revoke checking git#2535 from dscho/schannel-revoke-best-effort
185: ab7cd3b = 191: 0c4510a Merge pull request ci: avoid d/f conflict in vs/master git#2618 from dscho/avoid-d/f-conflict-in-vs/master
187: dae7326 = 192: 6ac0fb6 Merge 'add-p-many-files'
189: cb38a5d = 193: 647c8ee Merge pull request Rationalize line endings for scissors-cleanup git#2714 from lbonanomi/crlf-scissors
191: 8f48f6c = 194: 8e8806e Merge pull request t/t0014: fix: eliminate additional lines from trace git#2655 from jglathe/jg/t0014_trace_extra_info
193: bad1e9b = 195: c9c364c Merge 'git-gui/js/intent-to-add'
196: 76d8d8e = 196: 7e7f9a9 Merge pull request Vcpkg Install: detect lack of working Git, and note possible vcpkg time outs git#2351 from PhilipOakley/vcpkg-tip
199: 41d1bc8 = 197: dcaa2ad Merge pull request Windows arm64 support git#2915 from dennisameling/windows-arm64-support
200: bf9e646 = 198: 21af4de Merge pull request cmake(): allow setting HOST_CPU for cross-compilation git#3327 from dennisameling/fix-host-cpu
201: 44db0c0 = 199: 8cbc33f Merge pull request mingw: allow for longer paths in
parse_interpreter()git#3165 from dscho/increase-allowed-length-of-interpreter-path202: 1770fab = 200: f8b8bc1 Merge pull request Let the documentation reflect that there is no vs/master anymore git#3220 from dscho/there-is-no-vs/master-anymore
203: 0ba38fd = 201: cc1ad74 Merge pull request http: Add support for enabling automatic sending of SSL client certificate git#3293 from pascalmuller/http-support-automatically-sending-client-certificate
204: d28a75c = 202: f7b7458 Merge pull request Add
contrib/subtreetest execution to CI builds git#3349 from vdye/feature/ci-subtree-tests197: 6605987 = 203: 464374f Merge branch 'topic/size-t-followups' (size_t followups depending on seen topics)
198: 7f4dde5 = 204: a64526a coverity: skip building with Rust, for now
205: 49ea2ab = 205: 799025b Merge pull request Make Git for Windows start builds in modern Visual Studio git#3306 from PhilipOakley/vs-sln
206: d5230d4 = 206: a568127 Merge pull request Various fixes around
safe.directorygit#3791: Various fixes aroundsafe.directory207: cbbc9ac = 207: e27ea16 Merge pull request mingw: set $env:TERM=xterm-256color for newer OSes git#3751 from rkitover/native-term
208: 47fd215 = 208: 7bbbe4e Merge pull request winansi: check result before using Name for pty git#3875 from 1480c1/wine/detect_msys_tty
209: 614fa4a = 209: 4871964 Merge branch 'optionally-dont-append-atomically-on-windows'
210: d41e2be = 210: 161d3f5 Merge branch 'fsync-object-files-always'
211: 6ad95c7 = 211: 9eadc21 Merge pull request MinGW: link as terminal server aware git#3942 from rimrul/mingw-tsaware
212: a78fc88 = 212: 50e13b6 Fix Windows version resources (Fix Windows version resources git#4092)
213: fa171e3 = 213: 0da19b5 Fix global repository field not being cleared (Fix global repository field not being cleared git#4083)
214: 13263b6 = 214: 3ad0be1 Skip linking the "dashed"
git-<command>s for built-ins (Skip linking the "dashed"git-<command>s for built-ins git#4252)215: 4c6ce5f = 215: 9acd0c8 Add full
mingw-w64-git(i.e. regular MSYS2 ecosystem) support (Add fullmingw-w64-git(i.e. regular MSYS2 ecosystem) support git#5971)216: bfe1396 = 216: 1a9329b Merge pull request Allow running Git directly from
C:\Program Files\Git\mingw64\bin\git.exegit#2506 from dscho/issue-2283217: bce9fbd = 217: 1cb09aa Merge pull request Include Windows-specific maintenance and headless-git git#2974 from derrickstolee/maintenance-and-headless
218: 3853462 = 218: bd549c0 ARM64: Embed manifest properly (ARM64: Embed manifest properly git#4718)
219: fbb8168 = 219: 94d27d1 Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl (Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl git#4410)
220: 788fa7e = 220: 76c3ef2 Merge branch 'nano-server'
221: 8bba054 = 221: 1840eb1 Additional error checks for issuing the windows.appendAtomically warning (Additional error checks for issuing the windows.appendAtomically warning git#4528)
222: f813d0f = 222: 034bcb0 win32: use native ANSI sequence processing, if possible (win32: use native ANSI sequence processing, if possible git#4700)
223: 1fd53fd = 223: fa9f02b common-main.c: fflush stdout buffer when exit (common-main.c: fflush stdout buffer when exit git#4901)
224: 4800334 = 224: 8b779ab Merge branch 'run-t5601-and-t7406-with-symlinks-on-windows-10'
225: d1f656b = 225: 7a7111d Merge branch 'Fallback-to-AppData-if-XDG-CONFIG-HOME-is-unset'
226: d88a78c = 226: c0ef0cd Merge branch 'run-command-be-helpful-when-Git-LFS-fails-on-Windows-7'
227: 89c9b11 = 227: 483a644 Add path walk API and its use in 'git pack-objects' (Add path walk API and its use in 'git pack-objects' git#5171)
228: 699c565 = 228: 5fd4387 Add experimental 'git survey' builtin (Add experimental 'git survey' builtin git#5174)
229: a64de91 = 229: 85a5e08 credential-cache: handle ECONNREFUSED gracefully (credential-cache: handle ECONNREFUSED gracefully git#5329)
230: 471492e = 230: 7707342 Merge branch 'reftable-vs-custom-allocators'
231: 69f0f9e = 231: 2d73abd Merge branch 'check-whitespace-only-downstream'
232: 15d0208 = 232: f3a29cf 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)
233: ac394f2 = 233: 77a49ab Merge branch 'disallow-ntlm-auth-by-default'
234: 91bc99f = 234: 473071e Don't traverse mount points in
remove_dir_recurse()(Don't traverse mount points inremove_dir_recurse()git#6151)235: e23cf1c = 235: d777122 Detect number of cores better on multi-socket systems (Detect number of cores better on multi-socket systems git#6108)
236: c6f4d4a = 236: 7888e8f http: fix emptyAuth=auto for Negotiate/SPNEGO (http: fix emptyAuth=auto for Negotiate/SPNEGO git#6170)
237: 47c47ca = 237: 796f060 entry: flush fscache after creating directories and writing files (entry: flush fscache after creating directories and writing files git#6250)
238: 5bcc4ee = 238: b3e8e45 ci(macos): skip the
git p4tests (ci(macos): skip thegit p4tests git#5954)239: ede33a8 = 239: e264c9f Merge branch 'msys2'
240: a5eb06d = 240: 37910bf Merge 'docker-volumes-are-no-symlinks'
241: 5540f76 = 241: b701c37 mingw: try resetting the read-only bit if rename fails (Reset READONLY if rename fails git#4527)
242: b95da31 = 242: 96cb57d Merge pull request Specify symlink type in .gitattributes git#1897 from piscisaureus/symlink-attr
243: 47b85b1 = 243: f404406 Merge branch 'dont-clean-junctions'
244: a047e4e = 244: 0a0a275 Merge branch 'wsl-file-mode-bits'
245: 01f194d = 245: 03c5f6f Merge branch 'validate-dotgit'
246: 27ac9fb = 246: 15f63db Continue improving support for 4GB+ packs/clones/objects (Continue improving support for 4GB+ packs/clones/objects git#6289)
247: b5a1730 = 247: 22f5a02 Merge branch 'skip-rust-in-the-coverity-builds'
248: 1a0ec8d = 248: 346ea25 Merge branch 'ready-for-upstream'
249: 3fc2868 = 249: a8e3110 Win32: make FILETIME conversion functions public
250: 1c7eb61 = 250: 15b7df4 Win32: dirent.c: Move opendir down
251: 2e5df87 = 251: b4c1403 mingw: make the dirent implementation pluggable
252: 27eb2fe = 252: 9115580 Win32: make the lstat implementation pluggable
253: 761fdf6 = 253: cc30153 mingw: add infrastructure for read-only file system level caches
254: 593a82d = 254: 50f6db0 mingw: add a cache below mingw's lstat and dirent implementations
255: 3721217 = 255: 01c74ad fscache: load directories only once
256: 581b293 = 256: 9664426 fscache: add key for GIT_TRACE_FSCACHE
257: 0414bec = 257: 1ec29fb fscache: remember not-found directories
258: 4f6da68 = 258: 89edc86 fscache: add a test for the dir-not-found optimization
259: 30a839e = 259: d408585 add: use preload-index and fscache for performance
260: 03a9c72 = 260: 3425db5 dir.c: make add_excludes aware of fscache during status
261: b7c4191 = 261: 47e27e7 fscache: make fscache_enabled() public
262: 246cb63 = 262: 9f3df08 dir.c: regression fix for add_excludes with fscache
269: 3915805 = 263: fe3d0cc git-gui--askyesno: fix funny text wrapping
263: 46a58a4 = 264: 75cbc57 fetch-pack.c: enable fscache for stats under .git/objects
271: 37f0ba1 = 265: 8310d9a git-gui--askyesno (mingw): use Git for Windows' icon, if available
264: 5c98325 = 266: 293c809 checkout.c: enable fscache for checkout again
265: 69238ec = 267: 8c9e721 Enable the filesystem cache (fscache) in refresh_index().
266: 79e75eb = 268: f51a31a fscache: use FindFirstFileExW to avoid retrieving the short name
267: 27673f7 = 269: 0b588a2 fscache: add GIT_TEST_FSCACHE support
268: 3a3e9aa = 270: 1664b01 fscache: add fscache hit statistics
270: eebb55f = 271: 97931f5 unpack-trees: enable fscache for sparse-checkout
272: c82b7f6 = 272: 7d00142 status: disable and free fscache at the end of the status command
273: 60a657b = 273: b20d912 mem_pool: add GIT_TRACE_MEMPOOL support
274: 73d8b13 = 274: 7f710fc fscache: fscache takes an initial size
275: c5748e1 = 275: 7e8d7a7 fscache: update fscache to be thread specific instead of global
276: 5de1b71 = 276: 729808c fscache: teach fscache to use mempool
277: 32842b9 = 277: 7ff673f fscache: make fscache_enable() thread safe
278: 6a432b1 = 278: 039bc98 fscache: teach fscache to use NtQueryDirectoryFile
279: 41eeea8 = 279: f649674 fscache: remember the reparse tag for each entry
280: f55c2aa = 280: 54cc613 fscache: Windows Docker volumes are not symbolic links
281: 9bec57a = 281: 3ff6ddc fscache: optionally enable wsl compability file mode bits
282: ca65faa = 282: 7c758ea Merge branch 'fscache'
283: 31dfc66 = 283: ad0f197 fscache: implement an FSCache-aware is_mount_point()
284: ffe74ae = 284: 0c05838 Merge pull request status: disable and free fscache at the end of the status command git#1909 from benpeart/free-fscache-after-status-gfw
285: c1f40db = 285: 0905e84 clean: make use of FSCache
286: 273b7f1 = 286: 5747b2c Merge remote-tracking branch 'benpeart/fscache-per-thread-gfw'
287: 8f6758a = 287: 7313105 Merge branch 'dont-clean-junctions-fscache'
288: eafa2d2 = 288: e3ebaeb pack-objects (mingw): demonstrate a segmentation fault with large deltas
289: 069ab92 = 289: 416284b mingw: support long paths
290: 685986c = 290: 3830b02 win32(long path support): leave drive-less absolute paths intact
291: 710bc0c = 291: 0c6b1b5 compat/fsmonitor/fsm-*-win32: support long paths
292: f0b840c = 292: 7e76c06 clean: suggest using
core.longPathsif paths are too long to remove293: fcf0f97 = 293: 63bf3b0 mingw: explicitly specify with which cmd to prefix the cmdline
294: 25194b3 = 294: 3d0c0fb mingw: when path_lookup() failed, try BusyBox
295: d9540a0 = 295: 575c9f2 test-tool: learn to act as a drop-in replacement for
iconv296: 412df14 = 296: 6ce2a3b tests(mingw): if
iconvis unavailable, usetest-helper --iconv297: 0e5ae40 = 297: b790790 gitattributes: mark .png files as binary
298: 835148f = 298: 51b61d4 tests: move test PNGs into t/lib-diff/
299: 1a6c06f = 299: 1d9d040 tests: only override sort & find if there are usable ones in /usr/bin/
300: 599d41c = 300: a1e4ab0 tests: use the correct path separator with BusyBox
301: 5b53bde = 301: 899a57e mingw: only use Bash-ism
builtin pwd -Wwhen available302: 97d1593 = 302: 9d6e981 tests (mingw): remove Bash-specific pwd option
303: da402f8 = 303: 6db3d06 test-lib: add BUSYBOX prerequisite
304: f21a8e7 = 304: 09c4b4e t5003: use binary file from t/lib-diff/
305: 29010d4 = 305: 051df5c t5532: workaround for BusyBox on Windows
306: 64fb18f = 306: dd049d0 t5605: special-case hardlink test for BusyBox-w32
307: acdd352 = 307: b4e53e9 t5813: allow for $PWD to be a Windows path
308: a446fc8 = 308: 4c4b0ed t9200: skip tests when $PWD contains a colon
319: f962b26 = 309: fca1623 Partially un-revert "editor: save and reset terminal after calling EDITOR"
320: e017ddd = 310: cb6ff50 reset: reinstate support for the deprecated --stdin option
309: 1bdb539 = 311: ee1baf0 Describe Git for Windows' architecture
310: 6c8e43c = 312: 4fe689a Add an AGENTS.md file to help with AI-assisted debugging/development
311: 043f7ca = 313: 663f66e Modify the Code of Conduct for Git for Windows
318: d7452f9 = 314: abe2680 Merge branch 'gitk-and-git-gui-patches'
312: e51705f = 315: 648a5a5 CONTRIBUTING.md: add guide for first-time contributors
324: 482ff12 = 316: 5ee59ec Merge branch 'long-paths'
313: b8fc6dc = 317: 09562bb README.md: Add a Windows-specific preamble
325: b4b7d4b = 318: 75fb819 Merge branch 'busybox-w32'
314: e5b036c = 319: 0c81d18 Add an issue template
326: 24635ca = 320: 7c4439e Merge branch 'un-revert-editor-save-and-reset'
315: 686c674 = 321: d1e201a Modify the GitHub Pull Request template (to reflect Git for Windows)
316: 044beec = 322: 6514220 Add a GitHub workflow to monitor component updates
321: 8994f22 = 323: 34d8edd fsmonitor: reintroduce core.useBuiltinFSMonitor
327: d85d844 = 324: 772b1a0 Merge branch 'phase-out-reset-stdin'
317: 1d98a65 = 325: 86216e8 SECURITY.md: document Git for Windows' policies
322: 26eb881 = 326: 0370050 dependabot: help keeping GitHub Actions versions up to date
328: e97f858 = 327: f4ca282 Merge branch 'deprecate-core.useBuiltinFSMonitor'
323: 63c7fc0 = 328: db7dd11 ci: only run the expensive tests in the Windows tests for now
329: 35b415b = 329: 4b040ef Merge pull request Start monitoring updates of Git for Windows' components in the open git#2837 from dscho/monitor-component-updates
330: e072675 = 330: a084298 Merge 'readme' into HEAD
331: ccbbeeb = 331: 8b4c9f3 build(deps): bump actions/cache from 5 to 6
332: c292c4a = 332: 38eda46 build(deps): bump actions/cache from 5 to 6 (build(deps): bump actions/cache from 5 to 6 git#6303)
333: 081be3a = 333: 3062b60 repo: split annotated tags out from total tag count in structure
334: 6969842 = 334: cff5102 repo: filter the structure scope via --ref-filter=
335: 22edcf4 = 335: aaba84f repo: report top-N paths by count, disk, and inflated size in structure
336: c75a052 = 336: 71fd68e t1901: cover the --top option of
git repo structure337: 1130fad = 337: 35a2a94 repo: read the
--topdefault fromrepo.structure.top338: 9d06be7 = 338: eb3a71f git-survey: announce the upcoming pivot into
git repo structure339: 23d8596 = 339: 3550674 survey: turn into a thin shim over
git repo structure340: 94b70e6 = 340: ddaf3be Turn
git surveyinto a deprecated shim overgit repo structure(Turngit surveyinto a deprecated shim overgit repo structuregit#6268)Truncated; see the full conflict report in the workflow run summary.