Rebase shears/next (#27750812756)#245
Open
gitforwindowshelper[bot] wants to merge 283 commits into
Open
Conversation
There are no Windows/ARM64 agents in GitHub Actions yet, therefore we just skip adjusting the `vs-test` job for now. Signed-off-by: Dennis Ameling <dennis@dennisameling.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The intention of this change is to align with how the top-level git `Makefile` defines its own test target (which also internally calls `$(MAKE) -C t/ all`). This change also ensures the consistency of `make -C contrib/subtree test` with other testing in CI executions (which rely on `$DEFAULT_TEST_TARGET` being defined as `prove`). Signed-off-by: Victoria Dye <vdye@github.com>
In Git-for-Windows, work on using ARM64 has progressed. The commit 2d94b77 (cmake: allow building for Windows/ARM64, 2020-12-04) failed to notice that /compat/vcbuild/vcpkg_install.bat will default to using the "x64-windows" architecture for the vcpkg installation if not set, but CMake is not told of this default. Commit 635b6d9 (vcbuild: install ARM64 dependencies when building ARM64 binaries, 2020-01-31) later updated vcpkg_install.bat to accept an arch (%1) parameter, but retained the default. This default is neccessary for the use case where the project directory is opened directly in Visual Studio, which will find and build a CMakeLists.txt file without any parameters, thus expecting use of the default setting. Also Visual studio will generate internal .sln solution and .vcxproj project files needed for some extension tools. Inform users of the additional .sln/.vcxproj generation. ** How to test: rm -rf '.vs' # remove old visual studio settings rm -rf 'compat/vcbuild/vcpkg' # remove any vcpkg downloads rm -rf 'contrib/buildsystems/out' # remove builds & CMake artifacts with a fresh Visual Studio Community Edition, File>>Open>>(git *folder*) to load the project (which will take some time!). check for successful compilation. The implicit .sln (etc.) are in the hidden .vs directory created by Visual Studio. Signed-off-by: Philip Oakley <philipoakley@iee.email>
To complement the `--stdin` and `--literally` test cases that verify that we can hash files larger than 4GB on 64-bit platforms using the LLP64 data model, here is a test case that exercises `hash-object` _without_ any options. Just as before, we use the `big` file from the previous test case if it exists to save on setup time, otherwise generate it. Signed-off-by: Philip Oakley <philipoakley@iee.email> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
In bf2d5d8 (Don't let ld strip relocations, 2016-01-16) (picked from git-for-windows@6a237925bf10), Git for Windows introduced the `-Wl,-pic-executable` flag, specifying the exact entry point via `-e`. This required discerning between i686 and x86_64 code because the former required the symbol to be prefixed with an underscore, the latter did not. As per https://sourceware.org/bugzilla/show_bug.cgi?id=10865, the specified symbols are already the default, though. So let's drop the overly-specific definition. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In 1e64d18 (mingw: do resolve symlinks in `getcwd()`) a problem was introduced that causes git for Windows to stop working with certain mapped network drives (in particular, drives that are mapped to locations with long path names). Error message was "fatal: Unable to read current working directory: No such file or directory". Present change fixes this issue as discussed in git-for-windows#2480 Signed-off-by: Bjoern Mueller <bjoernm@gmx.de>
Update clink.pl to link with either libcurl.lib or libcurl-d.lib depending on whether DEBUG=1 is set. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
There is a Win32 API function to resolve symbolic links, and we can use that instead of resolving them manually. Even better, this function also resolves NTFS junction points (which are somewhat similar to bind mounts). This fixes git-for-windows#2481. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The native Windows HTTPS backend is based on Secure Channel which lets the caller decide how to handle revocation checking problems caused by missing information in the certificate or offline CRL distribution points. Unfortunately, cURL chose to handle these problems differently than OpenSSL by default: while OpenSSL happily ignores those problems (essentially saying "¯\_(ツ)_/¯"), the Secure Channel backend will error out instead. As a remedy, the "no revoke" mode was introduced, which turns off revocation checking altogether. This is a bit heavy-handed. We support this via the `http.schannelCheckRevoke` setting. In curl/curl#4981, we contributed an opt-in "best effort" strategy that emulates what OpenSSL seems to do. In Git for Windows, we actually want this to be the default. This patch makes it so, introducing it as a new value for the `http.schannelCheckRevoke" setting, which now becmes a tristate: it accepts the values "false", "true" or "best-effort" (defaulting to the last one). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The convention in Git project's shell scripts is to have white-space _before_, but not _after_ the `>` (or `<`). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This change enhances `git commit --cleanup=scissors` by detecting scissors lines ending in either LF (UNIX-style) or CR/LF (DOS-style). Regression tests are included to specifically test for trailing comments after a CR/LF-terminated scissors line. Signed-off-by: Luke Bonanomi <lbonanomi@gmail.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
For some reason, this test case was indented with 4 spaces instead of 1 horizontal tab. The other test cases in the same test script are fine. Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
As of Git v2.28.0, the diff for files staged via `git add -N` marks them as new files. Git GUI was ill-prepared for that, and this patch teaches Git GUI about them. Please note that this will not even fix things with v2.28.0, as the `rp/apply-cached-with-i-t-a` patches are required on Git's side, too. This fixes git-for-windows#2779 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Pratyush Yadav <me@yadavpratyush.com>
The vcpkg downloads may not succeed. Warn careful readers of the time out. A simple retry will usually resolve the issue. Signed-off-by: Philip Oakley <philipoakley@iee.email> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
Git's regular Makefile mentions that HOST_CPU should be defined when cross-compiling Git: https://github.com/git-for-windows/git/blob/37796bca76ef4180c39ee508ca3e42c0777ba444/Makefile#L438-L439 This is then used to set the GIT_HOST_CPU variable when compiling Git: https://github.com/git-for-windows/git/blob/37796bca76ef4180c39ee508ca3e42c0777ba444/Makefile#L1337-L1341 Then, when the user runs `git version --build-options`, it returns that value: https://github.com/git-for-windows/git/blob/37796bca76ef4180c39ee508ca3e42c0777ba444/help.c#L658 This commit adds the same functionality to the CMake configuration. Users can now set -DHOST_CPU= to set the target architecture. Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
As reported in newren/git-filter-repo#225, it looks like 99 bytes is not really sufficient to represent e.g. the full path to Python when installed via Windows Store (and this path is used in the hasb bang line when installing scripts via `pip`). Let's increase it to what is probably the maximum sensible path size: MAX_PATH. This makes `parse_interpreter()` in line with what `lookup_prog()` handles. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Vilius Šumskas <vilius@sumskas.eu>
We used to have that `make vcxproj` hack, but a hack it is. In the meantime, we have a much cleaner solution: using CMake, either explicitly, or even more conveniently via Visual Studio's built-in CMake support (simply open Git's top-level directory via File>Open>Folder...). Let's let the `README` reflect this. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This adds support for a new http.sslAutoClientCert config value. In cURL 7.77 or later the schannel backend does not automatically send client certificates from the Windows Certificate Store anymore. This config value is only used if http.sslBackend is set to "schannel", and can be used to opt in to the old behavior and force cURL to send client certificates. This fixes git-for-windows#3292 Signed-off-by: Pascal Muller <pascalmuller@gmail.com>
Because `git subtree` (unlike most other `contrib` modules) is included as part of the standard release of Git for Windows, its stability should be verified as consistently as it is for the rest of git. By including the `git subtree` tests in the CI workflow, these tests are as much of a gate to merging and indicator of stability as the standard test suite. Signed-off-by: Victoria Dye <vdye@github.com>
Ensure key CMake option values are part of the CMake output to facilitate user support when tool updates impact the wider CMake actions, particularly ongoing 'improvements' in Visual Studio. These CMake displays perform the same function as the build-options.txt provided in the main Git for Windows. CMake is already chatty. The setting of CMAKE_EXPORT_COMPILE_COMMANDS is also reported. Include the environment's CMAKE_EXPORT_COMPILE_COMMANDS value which may have been propogated to CMake's internal value. Testing the CMAKE_EXPORT_COMPILE_COMMANDS processing can be difficult in the Visual Studio environment, as it may be cached in many places. The 'environment' may include the OS, the user shell, CMake's own environment, along with the Visual Studio presets and caches. See previous commit for arefacts that need removing for a clean test. Signed-off-by: Philip Oakley <philipoakley@iee.email>
To verify that the `clean` side of the `clean`/`smudge` filter code is correct with regards to LLP64 (read: to ensure that `size_t` is used instead of `unsigned long`), here is a test case using a trivial filter, specifically _not_ writing anything to the object store to limit the scope of the test case. As in previous commits, the `big` file from previous test cases is reused if available, to save setup time, otherwise re-generated. Signed-off-by: Philip Oakley <philipoakley@iee.email> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In the case of Git for Windows (say, in a Git Bash window) running in a Windows Subsystem for Linux (WSL) directory, the GetNamedSecurityInfoW() call in is_path_owned_By_current_side() returns an error code other than ERROR_SUCCESS. This is consistent behavior across this boundary. In these cases, the owner would always be different because the WSL owner is a different entity than the Windows user. The change here is to suppress the error message that looks like this: error: failed to get owner for '//wsl.localhost/...' (1) Before this change, this warning happens for every Git command, regardless of whether the directory is marked with safe.directory. Signed-off-by: Derrick Stolee <derrickstolee@github.com>
For Windows builds >= 15063 set $env:TERM to "xterm-256color" instead of "cygwin" because they have a more capable console system that supports this. Also set $env:COLORTERM="truecolor" if unset. $env:TERM is initialized so that ANSI colors in color.c work, see 29a3963 (Win32: patch Windows environment on startup, 2012-01-15). See git-for-windows#3629 regarding problems caused by always setting $env:TERM="cygwin". This is the same heuristic used by the Cygwin runtime. Signed-off-by: Rafael Kitover <rkitover@gmail.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
NtQueryObject under Wine can return a success but fill out no name. In those situations, Wine will set Buffer to NULL, and set result to the sizeof(OBJECT_NAME_INFORMATION). Running a command such as echo "$(git.exe --version 2>/dev/null)" will crash due to a NULL pointer dereference when the code attempts to null terminate the buffer, although, weirdly, removing the subshell or redirecting stdout to a file will not trigger the crash. Code has been added to also check Buffer and Length to ensure the check is as robust as possible due to the current behavior being fragile at best, and could potentially change in the future This code is based on the behavior of NtQueryObject under wine and reactos. Signed-off-by: Christopher Degawa <ccom@randomderp.com>
Atomic append on windows is only supported on local disk files, and it may cause errors in other situations, e.g. network file system. If that is the case, this config option should be used to turn atomic append off. Co-Authored-By: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: 孙卓识 <sunzhuoshi@gmail.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
From the documentation of said setting: This boolean will enable fsync() when writing object files. This is a total waste of time and effort on a filesystem that orders data writes properly, but can be useful for filesystems that do not use journalling (traditional UNIX filesystems) or that only journal metadata and not file contents (OS X’s HFS+, or Linux ext3 with "data=writeback"). The most common file system on Windows (NTFS) does not guarantee that order, therefore a sudden loss of power (or any other event causing an unclean shutdown) would cause corrupt files (i.e. files filled with NULs). Therefore we need to change the default. Note that the documentation makes it sound as if this causes really bad performance. In reality, writing loose objects is something that is done only rarely, and only a handful of files at a time. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Whith Windows 2000, Microsoft introduced a flag to the PE header to mark executables as "terminal server aware". Windows terminal servers provide a redirected Windows directory and redirected registry hives when launching legacy applications without this flag set. Since we do not use any INI files in the Windows directory and don't write to the registry, we don't need this additional preparation. Telling the OS that we don't need this should provide slightly improved startup times in terminal server environments. When building for supported Windows Versions with MSVC the /TSAWARE linker flag is automatically set, but MinGW requires us to set the --tsaware flag manually. This partially addresses git-for-windows#3935. Signed-off-by: Matthias Aßhauer <mha1993@live.de>
Windows paths are typically limited to MAX_PATH = 260 characters, even
though the underlying NTFS file system supports paths up to 32,767 chars.
This limitation is also evident in Windows Explorer, cmd.exe and many
other applications (including IDEs).
Particularly annoying is that most Windows APIs return bogus error codes
if a relative path only barely exceeds MAX_PATH in conjunction with the
current directory, e.g. ERROR_PATH_NOT_FOUND / ENOENT instead of the
infinitely more helpful ERROR_FILENAME_EXCED_RANGE / ENAMETOOLONG.
Many Windows wide char APIs support longer than MAX_PATH paths through the
file namespace prefix ('\\?\' or '\\?\UNC\') followed by an absolute path.
Notable exceptions include functions dealing with executables and the
current directory (CreateProcess, LoadLibrary, Get/SetCurrentDirectory) as
well as the entire shell API (ShellExecute, SHGetSpecialFolderPath...).
Introduce a handle_long_path function to check the length of a specified
path properly (and fail with ENAMETOOLONG), and to optionally expand long
paths using the '\\?\' file namespace prefix. Short paths will not be
modified, so we don't need to worry about device names (NUL, CON, AUX).
Contrary to MSDN docs, the GetFullPathNameW function doesn't seem to be
limited to MAX_PATH (at least not on Win7), so we can use it to do the
heavy lifting of the conversion (translate '/' to '\', eliminate '.' and
'..', and make an absolute path).
Add long path error checking to xutftowcs_path for APIs with hard MAX_PATH
limit.
Add a new MAX_LONG_PATH constant and xutftowcs_long_path function for APIs
that support long paths.
While improved error checking is always active, long paths support must be
explicitly enabled via 'core.longpaths' option. This is to prevent end
users from shooting themselves in the foot by checking out files that Windows
Explorer, cmd/bash or their favorite IDE cannot handle.
Test suite:
Test the case is when the full pathname length of a dir is close
to 260 (MAX_PATH).
Bug report and an original reproducer by Andrey Rogozhnikov:
msysgit#122 (comment)
[jes: adjusted test number to avoid conflicts, added support for
chdir(), etc]
Thanks-to: Martin W. Kirst <maki@bitkings.de>
Thanks-to: Doug Kelly <dougk.ff7@gmail.com>
Original-test-by: Andrey Rogozhnikov <rogozhnikov.andrey@gmail.com>
Signed-off-by: Karsten Blees <blees@dcon.de>
Signed-off-by: Stepan Kasal <kasal@ucw.cz>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Josh Soref <jsoref@gmail.com>
While it may seem super convenient to some old Unix hands to simpy require Perl to be available when running the test suite, this is a major hassle on Windows, where we want to verify that Perl is not, actually, required in a NO_PERL build. As a super ugly workaround, we "install" a script into /usr/bin/perl reading like this: #!/bin/sh # We'd much rather avoid requiring Perl altogether when testing # an installed Git. Oh well, that's why we cannot have nice # things. exec c:/git-sdk-64/usr/bin/perl.exe "$@" The problem with that is that BusyBox assumes that the #! line in a script refers to an executable, not to a script. So when it encounters the line #!/usr/bin/perl in t5532's proxy-get-cmd, it barfs. Let's help this situation by simply executing the Perl script with the "interpreter" specified explicitly. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
When trying to ensure that long paths are handled correctly, we first normalize absolute paths as we encounter them. However, if the path is a so-called "drive-less" absolute path, i.e. if it is relative to the current drive but _does_ start with a directory separator, we would want the normalized path to be such a drive-less absolute path, too. Let's do that, being careful to still include the drive prefix when we need to go through the `\\?\` dance (because there, the drive prefix is absolutely required). This fixes git-for-windows#4586. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
When t5605 tries to verify that files are hardlinked (or that they are not), it uses the `-links` option of the `find` utility. BusyBox' implementation does not support that option, and BusyBox-w32's lstat() does not even report the number of hard links correctly (for performance reasons). So let's just switch to a different method that actually works on Windows. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Update wchar_t buffers to use MAX_LONG_PATH instead of MAX_PATH and call xutftowcs_long_path() in the Win32 backend source files. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Git for Windows uses MSYS2's Bash to run the test suite, which comes with benefits but also at a heavy price: on the plus side, MSYS2's POSIX emulation layer allows us to continue pretending that we are on a Unix system, e.g. use Unix paths instead of Windows ones, yet this is bought at a rather noticeable performance penalty. There *are* some more native ports of Unix shells out there, though, most notably BusyBox-w32's ash. These native ports do not use any POSIX emulation layer (or at most a *very* thin one, choosing to avoid features such as fork() that are expensive to emulate on Windows), and they use native Windows paths (usually with forward slashes instead of backslashes, which is perfectly legal in almost all use cases). And here comes the problem: with a $PWD looking like, say, C:/git-sdk-64/usr/src/git/t/trash directory.t5813-proto-disable-ssh Git's test scripts get quite a bit confused, as their assumptions have been shattered. Not only does this path contain a colon (oh no!), it also does not start with a slash. This is a problem e.g. when constructing a URL as t5813 does it: ssh://remote$PWD. Not only is it impossible to separate the "host" from the path with a $PWD as above, even prefixing $PWD by a slash won't work, as /C:/git-sdk-64/... is not a valid path. As a workaround, detect when $PWD does not start with a slash on Windows, and simply strip the drive prefix, using an obscure feature of Windows paths: if an absolute Windows path starts with a slash, it is implicitly prefixed by the drive prefix of the current directory. As we are talking about the current directory here, anyway, that strategy works. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
On Windows, git repositories may have extra files which need cleaned (e.g., a build directory) that may be arbitrarily deep. Suggest using `core.longPaths` if such situations are encountered. Fixes: git-for-windows#2715 Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
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>
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>
Includes touch-ups by 마누엘, Philip Oakley and 孙卓识. 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>
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>
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>
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 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>
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>
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
Add a README.md for GitHub goodness. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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: 761600d98b (Merge 'readme' into HEAD, 2018-06-07) (7516df929c..761600d98b)
To: aa6bed91b6 (Merge 'readme' into HEAD, 2018-06-07) (1eb41a8b93..aa6bed91b6)
Statistics
Range-diff (click to expand)
1: 2a8944c = 1: 1687954 ci(dockerized): reduce the PID limit for private repositories
2: 70d0589 = 2: 8303acd mingw: skip symlink type auto-detection for network share targets
3: 2ea0167 = 3: 0ac042d Merge branch 'fix-ci'
4: 3ef5743 = 4: c86e679 Merge branch 'prevent-accidental-ntlm-exfiltration-via-symlinks'
5: 10eee4a = 5: 4ae94ca unix-socket: avoid leak when initialization fails
6: 357f37c = 6: 7f6384f grep: prevent
^$false match at end of file282: 24459c9 ! 7: 34332f3 Merge 'objects-larger-than-4gb-on-windows-pt2'
7: 4f1c577 = 8: 7505a9f Merge branch 'v2.53.0.windows.3'
8: 6ef92ee = 9: ac7aff0 Merge branch 'fixes-from-the-git-mailing-list'
-: ---------- > 10: ca456d8 t9350: point out that refs are not updated correctly
23: 001d337 = 11: 18ed313 transport-helper: add trailing --
28: eb2ecc0 = 12: ca430d3 remote-helper: check helper status after import/export
35: 6c37aaa = 13: 7fd0e90 mingw: include the Python parts in the build
37: d48662b = 14: 34a9bc4 Always auto-gc after calling a fast-import transport
38: d3f8cb5 = 15: e184db2 mingw: prevent regressions with "drive-less" absolute paths
39: 82801ec = 16: f75e4c9 transport: optionally disable side-band-64k
9: e7c3194 = 17: e52533c ci(vs-build): adapt to Visual Studio 2026 default on windows-latest
10: b0135a2 = 18: b159f86 vcpkg_install: detect lack of Git
11: d7aec66 = 19: b6dddd1 vcpkg_install: add comment regarding slow network connections
12: 3a24e7d = 20: aa1cd3a vcbuild: install ARM64 dependencies when building ARM64 binaries
13: e76226b = 21: 150c6de vcbuild: add an option to install individual 'features'
14: f15c40c = 22: ae59635 cmake: allow building for Windows/ARM64
15: ba9b0b5 = 23: 6b6fbea ci(vs-build) also build Windows/ARM64 artifacts
16: 13a04f9 = 24: fad224e Add schannel to curl installation
17: 1154651 = 25: 81eac70 hash-object: demonstrate a >4GB/LLP64 problem
56: 69bace6 = 26: d234aef windows: skip linking
git-<command>for built-ins18: 0744c65 = 27: c0eea8d cmake(): allow setting HOST_CPU for cross-compilation
19: 7765ae2 = 28: 64e13bd object-file.c: use size_t for header lengths
20: b1953dd < -: ---------- t9350: point out that refs are not updated correctly
57: 5224a76 = 29: 66feaa3 mingw: stop hard-coding
CC = gcc21: 6509f4c = 30: 3c89fb6 CMake: default Visual Studio generator has changed
22: 244eb91 = 31: 9b2dff0 hash algorithms: use size_t for section lengths
58: 795248e = 32: 3ad51e1 mingw: drop the -D_USE_32BIT_TIME_T option
24: 3aee806 = 33: 27960d2 mingw: demonstrate a
git addissue with NTFS junctions25: e6c4c54 = 34: 01989e5 .gitignore: add Visual Studio CMakeSetting.json file
26: 06d7724 = 35: 293a8f9 hash-object --stdin: verify that it works with >4GB/LLP64
59: e5f4749 = 36: 7089af1 mingw: only use -Wl,--large-address-aware for 32-bit builds
27: d857bc6 = 37: 32e522d t5505/t5516: allow running without
.git/branches/in the templates29: 3cd0a7c = 38: e9de2b9 strbuf_realpath(): use platform-dependent API if available
30: b5c729f = 39: bd34471 http: use new "best effort" strategy for Secure Channel revoke checking
31: f2f6c48 = 40: 965cc69 subtree: update
contrib/subtreetesttarget32: 9e24d57 = 41: 161f24d CMakeLists: add default "x64-windows" arch for Visual Studio
33: 99e8ce8 = 42: 896b725 hash-object: add another >4GB/LLP64 test case
34: 5b9cbb5 = 43: 2521e61 setup: properly use "%(prefix)/" when in WSL
94: cebbef1 = 44: 64aed26 Add config option
windows.appendAtomically60: 983d5a1 = 45: 28612d0 mingw: avoid over-specifying
--pic-executable36: 32af1f6 = 46: 2243f70 t5505/t5516: fix white-space around redirectors
80: 3e4ae05 = 47: c2e60a5 MinGW: link as terminal server aware
40: 2d35e83 = 48: 8985959 mingw: fix fatal error working on mapped network drives on Windows
41: 96aed17 = 49: 56a9d16 clink.pl: fix MSVC compile script to handle libcurl-d.lib
42: cbe4886 = 50: 3f8d37e mingw: implement a platform-specific
strbuf_realpath()43: 02a93b0 = 51: 901fea6 t3701: verify that we can add lots of files interactively
44: b2d2909 = 52: 4d08a34 commit: accept "scissors" with CR/LF line endings
45: 65aa6f8 = 53: 7fc97f9 t0014: fix indentation
46: f2bfe86 = 54: 86ea132 git-gui: accommodate for intent-to-add files
47: 621a1cf = 55: 3a305f1 mingw: allow for longer paths in
parse_interpreter()48: ca6b707 = 56: 06c268f compat/vcbuild: document preferred way to build in Visual Studio
49: 6f60d11 = 57: e821184 http: optionally send SSL client certificate
50: b48caaa = 58: af8d180 ci: run
contrib/subtreetests in CI builds51: 3a317ad = 59: 8486827 CMake: show Win32 and Generator_platform build-option values
52: 67ebe69 = 60: dd537b0 hash-object: add a >4GB/LLP64 test case using filtered input
53: 0ba12ff = 61: 08bf22b compat/mingw.c: do not warn when failing to get owner
54: b2ee9ac = 62: e34b5f4 mingw: $env:TERM="xterm-256color" for newer OSes
55: 508a0cb = 63: 30e4e17 winansi: check result and Buffer before using Name
100: 13639a2 = 64: 9e7812a mingw: change core.fsyncObjectFiles = 1 by default
101: 96dedfa = 65: 556bbb5 Fix Windows version resources
102: 5c2179d = 66: 3c04a07 status: fix for old-style submodules with commondir
61: cbf859d = 67: 815f29d mingw: set the prefix and HOST_CPU as per MSYS2's settings
62: e7b9de3 = 68: 1d49381 mingw: only enable the MSYS2-specific stuff when compiling in MSYS2
63: 8c4aafe = 69: be5bad7 mingw: rely on MSYS2's metadata instead of hard-coding it
64: 65f3ac5 = 70: fce0de1 mingw: always define
ETC_*for MSYS2 environments65: 8dc6477 = 71: da8bf15 max_tree_depth: lower it for clang builds in general on Windows
66: 975d99c = 72: 55d037d mingw: ensure valid CTYPE
67: adeec0f = 73: 97d8312 mingw: allow
git.exeto be used instead of the "Git wrapper"68: 82c9dbe = 74: 1da9b8d revision: create mark_trees_uninteresting_dense()
69: 5c86d87 = 75: f3d87ad mingw: ignore HOMEDRIVE/HOMEPATH if it points to Windows' system directory
70: 63e9a52 = 76: de3dcd9 survey: stub in new experimental 'git-survey' command
71: 3f5132d = 77: 6f35443 Merge branch 'dscho-avoid-d-f-conflict-in-vs-master'
72: 9f4f596 ! 78: 74e58f2 survey: add command line opts to select references
@@ builtin/survey.c: static void survey_load_config(struct survey_context *ctx) + + ctx->report.refs.refs_nr = ref_array.nr; + for (int i = 0; i < ref_array.nr; i++) { -+ unsigned long size; ++ size_t size; + struct ref_array_item *item = ref_array.items[i]; + + switch (item->kind) {73: 0960e0e = 79: fe1f6ed clink.pl: fix libexpatd.lib link error when using MSVC
74: b73b461 = 80: 63b080d survey: start pretty printing data in table form
75: 477d8fb = 81: f46dbe2 Makefile: clean up .ilk files when MSVC=1
76: a03e9a4 ! 82: 2c43074 survey: add object count summary
@@ builtin/survey.c: static void do_load_refs(struct survey_context *ctx, - for (int i = 0; i < ref_array.nr; i++) { + ctx->report.refs.refs_nr = ctx->ref_array.nr; + for (int i = 0; i < ctx->ref_array.nr; i++) { - unsigned long size; + size_t size; - struct ref_array_item *item = ref_array.items[i]; + struct ref_array_item *item = ctx->ref_array.items[i];77: 4048c2d = 83: 1ed699a vcbuild: add support for compiling Windows resource files
78: 7d1bcb7 ! 84: 4648d45 survey: summarize total sizes by object type
@@ builtin/survey.c: static void increment_object_counts( + for (size_t i = 0; i < oids->nr; i++) { + struct object_info oi = OBJECT_INFO_INIT; + unsigned oi_flags = OBJECT_INFO_FOR_PREFETCH; -+ unsigned long object_length = 0; ++ size_t object_length = 0; + off_t disk_sizep = 0; + enum object_type type; +79: 6117a2b = 85: 88f7449 config.mak.uname: add git.rc to MSVC builds
81: 90d31e2 = 86: 8197bee survey: show progress during object walk
82: e2d5763 = 87: 80052e5 mingw: make sure
errnois set correctly when socket operations fail83: f49ed0f = 88: caa53b8 t5563: verify that NTLM authentication works
84: 930ea3e = 89: c43a1a9 clink.pl: ignore no-stack-protector arg on MSVC=1 builds
85: 72ebd4e = 90: 4333cc2 http: optionally load libcurl lazily
86: f2475ed = 91: 97b9b05 survey: add ability to track prioritized lists
87: 50f05db = 92: 76a3370 compat/mingw: handle WSA errors in strerror
88: 57b2f48 = 93: f8faf41 http: disallow NTLM authentication by default
89: 587f8a8 = 94: 7692164 clink.pl: move default linker options for MSVC=1 builds
90: 53edd44 = 95: c5ef654 http: support lazy-loading libcurl also on Windows
91: e852fc4 = 96: df38cf7 survey: add report of "largest" paths
92: 6e05142 = 97: a044113 compat/mingw: drop outdated comment
93: 0dab65d = 98: e8686ab http: warn if might have failed because of NTLM
95: 664faad = 99: b406549 cmake: install headless-git.
96: 39cbe22 = 100: 788e889 http: when loading libcurl lazily, allow for multiple SSL backends
97: 83e8fe4 = 101: c008dd9 survey: add --top= option and config
98: 87d3d94 = 102: 5f3b482 t0301: actually test credential-cache on Windows
99: 4c6501a = 103: fea5543 credential: advertise NTLM suppression and allow helpers to re-enable
103: 02369c0 = 104: 85e918d git.rc: include winuser.h
104: 4b711bb = 105: ff22f13 mingw: do load libcurl dynamically by default
105: e3aaa20 = 106: 824984a Add a GitHub workflow to verify that Git/Scalar work in Nano Server
106: 5003538 = 107: b55a297 mingw: suggest
windows.appendAtomicallyin more cases107: 7fa3b6d = 108: d839ad2 win32: use native ANSI sequence processing, if possible
108: b728ca9 = 109: 5a5c9b6 common-main.c: fflush stdout buffer upon exit
109: 811a141 = 110: 6d05c91 t5601/t7406(mingw): do run tests with symlink support
110: a52971c = 111: 71a6381 win32: ensure that
localtime_r()is declared even in i686 builds111: c342c92 = 112: 2ce394f Fallback to AppData if XDG_CONFIG_HOME is unset
112: 068858c = 113: f7001bf run-command: be helpful with Git LFS fails on Windows 7
113: c9c3939 = 114: fd69ff3 survey: clearly note the experimental nature in the output
114: 26b8f4a = 115: f519125 credential-cache: handle ECONNREFUSED gracefully
115: 86ae591 = 116: 7c9702b reftable: do make sure to use custom allocators
116: 225c54f = 117: ffd43b3 check-whitespace: avoid alerts about upstream commits
117: ed5ce5d = 118: 0207f2a t/t5571-prep-push-hook.sh: Add test with writing to stderr
149: b394ae9 = 119: 60e7045 dir: do not traverse mount points
118: 54237c2 = 120: f9f5d91 Merge 'remote-hg-prerequisites' into HEAD
119: d89da34 = 121: 3d7dec0 Merge branch 'drive-prefix'
120: 93de279 = 122: 4c2a338 Merge branch 'msys2-python'
121: d692159 = 123: 69c5d48 Merge pull request Config option to disable side-band-64k for transport git#2375 from assarbad/reintroduce-sideband-config
122: 437a92c = 124: fd3999e Merge pull request mingw: fix fatal error working on mapped network drives on Windows git#2488 from bmueller84/master
123: 7cd4ca3 = 125: 047d5ac Merge pull request clink.pl: fix MSVC compile script to handle libcurl-d.lib git#2501 from jeffhostetler/clink-debug-curl
124: c56002a = 126: eb1310f Merge pull request Handle
git add <file>where <file> traverses an NTFS junction git#2504 from dscho/access-repo-via-junction125: 88c64cf = 127: 6566118 Merge pull request Introduce and use the new "best effort" strategy for Secure Channel revoke checking git#2535 from dscho/schannel-revoke-best-effort
126: 7a66950 = 128: 3db0187 Merge pull request ci: avoid d/f conflict in vs/master git#2618 from dscho/avoid-d/f-conflict-in-vs/master
129: cea066d = 129: 05e98e5 mingw: Support
git_terminal_promptwith more terminals127: 064cf1d = 130: 75319f0 Merge 'add-p-many-files'
131: 7098f28 = 131: 270050d compat/terminal.c: only use the Windows console if bash 'read -r' fails
128: 29d0041 = 132: 2ffe698 Merge pull request Rationalize line endings for scissors-cleanup git#2714 from lbonanomi/crlf-scissors
133: b8a9626 = 133: d991fed mingw (git_terminal_prompt): do fall back to CONIN$/CONOUT$ method
130: eafea01 = 134: 8bb9e10 Merge pull request t/t0014: fix: eliminate additional lines from trace git#2655 from jglathe/jg/t0014_trace_extra_info
135: 7f9921c = 135: 2394759 Win32: symlink: move phantom symlink creation to a separate function
132: d7c5e69 = 136: e2480b0 Merge 'git-gui/js/intent-to-add'
137: fc9b0ec = 137: eac7736 mingw: introduce code to detect whether we're inside a Windows container
138: 5824da5 = 138: 0adc4b6 Introduce helper to create symlinks that knows about index_state
134: 086accc = 139: eb0a129 Merge pull request Vcpkg Install: detect lack of working Git, and note possible vcpkg time outs git#2351 from PhilipOakley/vcpkg-tip
140: b27b355 = 140: fb41e55 mingw: when running in a Windows container, try to rename() harder
141: 4ea2784 = 141: 550a878 mingw: allow to specify the symlink type in .gitattributes
136: 2a7b363 = 142: 0f92a0f Merge pull request Windows arm64 support git#2915 from dennisameling/windows-arm64-support
143: ebd73a0 = 143: ec12ff1 mingw: move the file_attr_to_st_mode() function definition
144: 311041e = 144: 11b4b3f Win32: symlink: add test for
symlinkattribute139: f61bf12 = 145: 54430ab Merge pull request cmake(): allow setting HOST_CPU for cross-compilation git#3327 from dennisameling/fix-host-cpu
146: c456e9f = 146: 46524b2 mingw: Windows Docker volumes are not symbolic links
147: ee576b9 = 147: 3bcfa27 clean: do not traverse mount points
142: 85e1101 = 148: 2339950 Merge pull request mingw: allow for longer paths in
parse_interpreter()git#3165 from dscho/increase-allowed-length-of-interpreter-path150: 9c4c40b = 149: ace9e32 win32: thread-utils: handle multi-socket systems
151: 3bb42e2 = 150: f117038 t5563: add tests for http.emptyAuth with Negotiate
152: b5f9a71 = 151: f230e18 entry: flush fscache after creating directories and writing files
153: 039b656 = 152: 656d1a0 ci(macos): skip the
git p4tests154: a8c6006 = 153: c6443c8 mingw: work around rename() failing on a read-only file
155: 7a49aa7 = 154: 57198ad clean: remove mount points when possible
156: 974d428 = 155: c67d283 mingw: optionally enable wsl compability file mode bits
145: 6840ba7 = 156: de65e2f Merge pull request Let the documentation reflect that there is no vs/master anymore git#3220 from dscho/there-is-no-vs/master-anymore
148: 7d72bc3 = 157: bfd754f Merge pull request http: Add support for enabling automatic sending of SSL client certificate git#3293 from pascalmuller/http-support-automatically-sending-client-certificate
157: 29248e8 = 158: 89acf00 Merge pull request Add
contrib/subtreetest execution to CI builds git#3349 from vdye/feature/ci-subtree-tests158: bf7e12a = 159: 302e10e Merge pull request Make Git for Windows start builds in modern Visual Studio git#3306 from PhilipOakley/vs-sln
159: 05ab3d9 = 160: 2de3de6 Merge pull request Begin
unsigned long->size_tconversion to support large files on Windows git#3533 from PhilipOakley/hashliteral_t160: c6d1d40 = 161: b3e87af Merge pull request Various fixes around
safe.directorygit#3791: Various fixes aroundsafe.directory161: cf5bda6 = 162: 067b307 Merge pull request mingw: set $env:TERM=xterm-256color for newer OSes git#3751 from rkitover/native-term
162: 4a80fbf = 163: d8745c0 Merge pull request winansi: check result before using Name for pty git#3875 from 1480c1/wine/detect_msys_tty
163: df1f4e5 = 164: 7830f4b Merge branch 'optionally-dont-append-atomically-on-windows'
164: 53f3384 = 165: a0c5535 Merge branch 'fsync-object-files-always'
165: 835b9d5 = 166: a67f4cb Merge pull request MinGW: link as terminal server aware git#3942 from rimrul/mingw-tsaware
166: 0ab106c = 167: 9c0289e Fix Windows version resources (Fix Windows version resources git#4092)
167: 1ca0b8a = 168: 1761615 Fix global repository field not being cleared (Fix global repository field not being cleared git#4083)
168: 2f82607 = 169: cf19036 Skip linking the "dashed"
git-<command>s for built-ins (Skip linking the "dashed"git-<command>s for built-ins git#4252)169: 4c70a41 = 170: 08cb45a Add full
mingw-w64-git(i.e. regular MSYS2 ecosystem) support (Add fullmingw-w64-git(i.e. regular MSYS2 ecosystem) support git#5971)170: 5a53e8d = 171: 13fdc9e Merge pull request Allow running Git directly from
C:\Program Files\Git\mingw64\bin\git.exegit#2506 from dscho/issue-2283171: 7c50f8a = 172: 6e37213 Merge pull request Include Windows-specific maintenance and headless-git git#2974 from derrickstolee/maintenance-and-headless
172: 910e33c = 173: 44d9662 ARM64: Embed manifest properly (ARM64: Embed manifest properly git#4718)
173: 85d779b = 174: 491a5bb Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl (Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl git#4410)
174: a905d40 = 175: 38f694e Merge branch 'nano-server'
175: 8993e1b = 176: f6d3d06 Additional error checks for issuing the windows.appendAtomically warning (Additional error checks for issuing the windows.appendAtomically warning git#4528)
176: 32e39c9 = 177: dfbd266 win32: use native ANSI sequence processing, if possible (win32: use native ANSI sequence processing, if possible git#4700)
177: 58a19e3 = 178: f1f1c15 common-main.c: fflush stdout buffer when exit (common-main.c: fflush stdout buffer when exit git#4901)
178: 28638b8 = 179: a272ec0 Merge branch 'run-t5601-and-t7406-with-symlinks-on-windows-10'
179: 9cbe1a4 = 180: 0796b21 Merge branch 'Fix-i686-build-with-GCC-v14'
180: 878772a = 181: 8a19dd7 Merge branch 'Fallback-to-AppData-if-XDG-CONFIG-HOME-is-unset'
181: b9377e0 = 182: a65fd53 Merge branch 'run-command-be-helpful-when-Git-LFS-fails-on-Windows-7'
182: f2ecf00 = 183: 7031df7 Add path walk API and its use in 'git pack-objects' (Add path walk API and its use in 'git pack-objects' git#5171)
183: 782a0ce = 184: addc22e Add experimental 'git survey' builtin (Add experimental 'git survey' builtin git#5174)
184: 145c24a = 185: ca6b395 credential-cache: handle ECONNREFUSED gracefully (credential-cache: handle ECONNREFUSED gracefully git#5329)
185: 241bd61 = 186: 2ffdec5 Merge branch 'reftable-vs-custom-allocators'
186: b29ea48 = 187: ba66f9c Merge branch 'check-whitespace-only-downstream'
187: 1ff5f18 = 188: fa788ca 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)
188: aa177af = 189: 37f0525 Merge branch 'disallow-ntlm-auth-by-default'
189: 27fbc22 = 190: abfbddb Don't traverse mount points in
remove_dir_recurse()(Don't traverse mount points inremove_dir_recurse()git#6151)190: 383a2c6 = 191: cd6c5b1 Detect number of cores better on multi-socket systems (Detect number of cores better on multi-socket systems git#6108)
191: 5396ebf = 192: 46d2f6d http: fix emptyAuth=auto for Negotiate/SPNEGO (http: fix emptyAuth=auto for Negotiate/SPNEGO git#6170)
192: 78f0229 = 193: c825789 entry: flush fscache after creating directories and writing files (entry: flush fscache after creating directories and writing files git#6250)
193: 1db95d4 = 194: 4f159bb ci(macos): skip the
git p4tests (ci(macos): skip thegit p4tests git#5954)194: f0ccea5 = 195: 297e445 Merge branch 'msys2'
195: 224627f = 196: 2761795 Merge 'docker-volumes-are-no-symlinks'
196: c02157e = 197: 14d00df mingw: try resetting the read-only bit if rename fails (Reset READONLY if rename fails git#4527)
197: 22205d4 = 198: fbd8e74 Merge pull request Specify symlink type in .gitattributes git#1897 from piscisaureus/symlink-attr
198: d03b0dd = 199: 2fd2052 Merge branch 'dont-clean-junctions'
199: 98dec88 = 200: a96b559 Merge branch 'wsl-file-mode-bits'
200: 30eb19c = 201: 91e2b79 Merge branch 'ready-for-upstream'
201: 326ee96 = 202: 3a97de0 Win32: make FILETIME conversion functions public
202: 9b04208 = 203: bd12a87 Win32: dirent.c: Move opendir down
203: d0211fe = 204: c1f5ad4 mingw: make the dirent implementation pluggable
204: f894d63 = 205: decd086 Win32: make the lstat implementation pluggable
205: 18f3767 = 206: 30feaff mingw: add infrastructure for read-only file system level caches
206: cf8e089 = 207: eb4aa3e mingw: add a cache below mingw's lstat and dirent implementations
207: fc02652 = 208: fff4801 fscache: load directories only once
208: aaf684a = 209: e6ae47e fscache: add key for GIT_TRACE_FSCACHE
209: 45d4aec = 210: 220153b fscache: remember not-found directories
210: 8a4aef5 = 211: 356eca7 fscache: add a test for the dir-not-found optimization
211: dabb82e = 212: acb0f49 add: use preload-index and fscache for performance
212: 6adb74a = 213: 2115220 dir.c: make add_excludes aware of fscache during status
213: 6b95f4b = 214: c7483d1 fscache: make fscache_enabled() public
214: c343ff2 = 215: b6c8d6b dir.c: regression fix for add_excludes with fscache
215: f88cf5c = 216: b0be6fc fetch-pack.c: enable fscache for stats under .git/objects
216: 37c988a = 217: 4a56fb8 checkout.c: enable fscache for checkout again
217: 48c40e8 = 218: 47c6b92 Enable the filesystem cache (fscache) in refresh_index().
218: 378c899 = 219: 9fd44d4 fscache: use FindFirstFileExW to avoid retrieving the short name
219: 459089f = 220: fc06b09 fscache: add GIT_TEST_FSCACHE support
220: b551d58 = 221: 117540a fscache: add fscache hit statistics
221: 69693d6 = 222: c9c761c unpack-trees: enable fscache for sparse-checkout
222: a6a2d7b = 223: 7d7526f status: disable and free fscache at the end of the status command
224: 0d6e635 = 224: 98108aa mem_pool: add GIT_TRACE_MEMPOOL support
226: bc42aed = 225: 9bd301a fscache: fscache takes an initial size
227: 2a08be6 = 226: 6609a29 fscache: update fscache to be thread specific instead of global
228: f5a4f2b = 227: 6bce77a fscache: teach fscache to use mempool
223: 745971c = 228: 6d7be78 git-gui--askyesno: fix funny text wrapping
229: 359bf34 = 229: 7b3d5b0 fscache: make fscache_enable() thread safe
225: 982c1ed = 230: 08419cd git-gui--askyesno (mingw): use Git for Windows' icon, if available
230: f5974e3 = 231: bbae1d2 fscache: teach fscache to use NtQueryDirectoryFile
231: 04c5fc0 = 232: bf7856e fscache: remember the reparse tag for each entry
232: b2d0d70 = 233: a6792c3 fscache: Windows Docker volumes are not symbolic links
233: 7501f1e = 234: 3442996 fscache: optionally enable wsl compability file mode bits
234: 9baf98e = 235: 5692edd Merge branch 'fscache'
235: 0342244 = 236: bd6dce0 fscache: implement an FSCache-aware is_mount_point()
236: 3eaf759 = 237: d6c5c67 Merge pull request status: disable and free fscache at the end of the status command git#1909 from benpeart/free-fscache-after-status-gfw
237: da4f536 = 238: 98ab8e0 clean: make use of FSCache
238: 4d016e9 = 239: d13e72d Merge remote-tracking branch 'benpeart/fscache-per-thread-gfw'
239: 13f9c1b = 240: 4e29cf6 Merge branch 'dont-clean-junctions-fscache'
240: 4ab84d7 = 241: 2d99a1f pack-objects (mingw): demonstrate a segmentation fault with large deltas
241: bd8cc6c = 242: 924af2d mingw: support long paths
242: d4578ca = 243: 6166637 win32(long path support): leave drive-less absolute paths intact
243: f80505d = 244: 5a2d2f0 compat/fsmonitor/fsm-*-win32: support long paths
244: 7f41a71 = 245: e9f6326 clean: suggest using
core.longPathsif paths are too long to remove245: d9995b8 = 246: b167e25 mingw: explicitly specify with which cmd to prefix the cmdline
246: 4ccb48a = 247: a04bef8 mingw: when path_lookup() failed, try BusyBox
247: 24f0ce1 = 248: e97e97e test-tool: learn to act as a drop-in replacement for
iconv248: 34d679f = 249: 5ebe94f tests(mingw): if
iconvis unavailable, usetest-helper --iconv249: 25db01d = 250: fe00b05 gitattributes: mark .png files as binary
250: abb7003 = 251: 1619eee tests: move test PNGs into t/lib-diff/
251: e29b787 = 252: 2ae6ab4 tests: only override sort & find if there are usable ones in /usr/bin/
252: 21c4d91 = 253: ba25e5f tests: use the correct path separator with BusyBox
253: 3d47077 = 254: 0197ae8 mingw: only use Bash-ism
builtin pwd -Wwhen available254: 1939b2b = 255: 6e6614d tests (mingw): remove Bash-specific pwd option
255: ec18bd3 = 256: 37a7ac2 test-lib: add BUSYBOX prerequisite
256: 344ca32 = 257: 7dde760 t5003: use binary file from t/lib-diff/
257: 4e06d0e = 258: 5d39def t5532: workaround for BusyBox on Windows
258: d1e62b2 = 259: 4985b22 t5605: special-case hardlink test for BusyBox-w32
259: 912160c = 260: 7075b16 t5813: allow for $PWD to be a Windows path
260: fb27d99 = 261: d097419 t9200: skip tests when $PWD contains a colon
261: 937fa01 = 262: cb8f380 Describe Git for Windows' architecture
262: f4f2c3c = 263: ea1e97e Add an AGENTS.md file to help with AI-assisted debugging/development
263: a08f8ae = 264: 9004a61 Modify the Code of Conduct for Git for Windows
271: 299beaf = 265: 62a130e Merge branch 'gitk-and-git-gui-patches'
264: fef4cec = 266: af68611 CONTRIBUTING.md: add guide for first-time contributors
272: 8ca6ac8 = 267: 2dedcaa Merge branch 'long-paths'
267: 0b18d7c = 268: e41ad0b README.md: Add a Windows-specific preamble
266: bab759b = 269: afbe43c Partially un-revert "editor: save and reset terminal after calling EDITOR"
273: 47c5f84 = 270: 480c0b3 Merge branch 'busybox-w32'
275: 5eb6b25 = 271: 1dc6124 Add an issue template
268: 73dcc6d = 272: 058a243 reset: reinstate support for the deprecated --stdin option
274: ebf4c40 = 273: bab5629 Merge branch 'un-revert-editor-save-and-reset'
277: bb4d62b = 274: a08fb40 Modify the GitHub Pull Request template (to reflect Git for Windows)
265: d00d935 = 275: 40a7bca Add a GitHub workflow to monitor component updates
269: 1b1fe14 = 276: 315edfa fsmonitor: reintroduce core.useBuiltinFSMonitor
276: 3668900 = 277: 04427ce Merge branch 'phase-out-reset-stdin'
279: ea13c52 = 278: dc3f82a SECURITY.md: document Git for Windows' policies
270: dae1ab5 = 279: 7c925ec dependabot: help keeping GitHub Actions versions up to date
278: ca112dc = 280: 0f7c04a Merge branch 'deprecate-core.useBuiltinFSMonitor'
283: 1800de2 ! 281: 61a1c1e ci: only run the expensive tests in the Windows tests for now
280: 51f65f0 = 282: 722dca6 Merge pull request Start monitoring updates of Git for Windows' components in the open git#2837 from dscho/monitor-component-updates
281: 131fc8e = 283: aa6bed9 Merge 'readme' into HEAD
284: efd8730 < -: ---------- fixup! ci: only run the expensive tests in the Windows tests for now
285: eae40bb < -: ---------- Re-enable expensive tests in Windows CI (Re-enable expensive tests in Windows CI git#6281)