Rebase shears/main (#24272028396)#117
Open
gitforwindowshelper[bot] wants to merge 285 commits intobase/shears/main-24272028396from
Open
Rebase shears/main (#24272028396)#117gitforwindowshelper[bot] wants to merge 285 commits intobase/shears/main-24272028396from
gitforwindowshelper[bot] wants to merge 285 commits intobase/shears/main-24272028396from
Conversation
Windows' equivalent to "bind mounts", NTFS junction points, can be unlinked without affecting the mount target. This is clearly what users expect to happen when they call `git clean -dfx` in a worktree that contains NTFS junction points: the junction should be removed, and the target directory of said junction should be left alone (unless it is inside the worktree). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
While Git for Windows does not _ship_ Python (in order to save on bandwidth), MSYS2 provides very fine Python interpreters that users can easily take advantage of, by using Git for Windows within its SDK. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Thorough benchmarking with repacking a subset of linux.git (the commit history reachable from 93a6fef ([PATCH] fix the SYSCTL=n compilation, 2007-02-28), to be precise) suggest that this allocator is on par, in multi-threaded situations maybe even better than nedmalloc: `git repack -adfq` with mimalloc, 8 threads: 31.166991900 27.576763800 28.712311000 27.373859000 27.163141900 `git repack -adfq` with nedmalloc, 8 threads: 31.915032900 27.149883100 28.244933700 27.240188800 28.580849500 In a different test using GitHub Actions build agents (probably single-threaded, a core-strength of nedmalloc)): `git repack -q -d -l -A --unpack-unreachable=2.weeks.ago` with mimalloc: 943.426 978.500 939.709 959.811 954.605 `git repack -q -d -l -A --unpack-unreachable=2.weeks.ago` with nedmalloc: 995.383 952.179 943.253 963.043 980.468 While these measurements were not executed with complete scientific rigor, as no hardware was set aside specifically for these benchmarks, it shows that mimalloc and nedmalloc perform almost the same, nedmalloc with a bit higher variance and also slightly higher average (further testing suggests that nedmalloc performs worse in multi-threaded situations than in single-threaded ones). In short: mimalloc seems to be slightly better suited for our purposes than nedmalloc. Seeing that mimalloc is developed actively, while nedmalloc ceased to see any updates in eight years, let's use mimalloc on Windows instead. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Since commit 0c499ea (send-pack: demultiplex a sideband stream with status data, 2010-02-05) the send-pack builtin uses the side-band-64k capability if advertised by the server. Unfortunately this breaks pushing over the dump git protocol if used over a network connection. The detailed reasons for this breakage are (by courtesy of Jeff Preshing, quoted from https://groups.google.com/d/msg/msysgit/at8D7J-h7mw/eaLujILGUWoJ): MinGW wraps Windows sockets in CRT file descriptors in order to mimic the functionality of POSIX sockets. This causes msvcrt.dll to treat sockets as Installable File System (IFS) handles, calling ReadFile, WriteFile, DuplicateHandle and CloseHandle on them. This approach works well in simple cases on recent versions of Windows, but does not support all usage patterns. In particular, using this approach, any attempt to read & write concurrently on the same socket (from one or more processes) will deadlock in a scenario where the read waits for a response from the server which is only invoked after the write. This is what send_pack currently attempts to do in the use_sideband codepath. The new config option `sendpack.sideband` allows to override the side-band-64k capability of the server, and thus makes the dumb git protocol work. Other transportation methods like ssh and http/https still benefit from the sideband channel, therefore the default value of `sendpack.sideband` is still true. Signed-off-by: Thomas Braun <thomas.braun@byte-physics.de> Signed-off-by: Oliver Schneider <oliver@assarbad.net> 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>
These fixes have been sent to the Git mailing list but have not been picked up by the Git project yet. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Start work on a new 'git survey' command to scan the repository for monorepo performance and scaling problems. The goal is to measure the various known "dimensions of scale" and serve as a foundation for adding additional measurements as we learn more about Git monorepo scaling problems. The initial goal is to complement the scanning and analysis performed by the GO-based 'git-sizer' (https://github.com/github/git-sizer) tool. It is hoped that by creating a builtin command, we may be able to take advantage of internal Git data structures and code that is not accessible from GO to gain further insight into potential scaling problems. Co-authored-by: Derrick Stolee <stolee@gmail.com> Signed-off-by: Jeff Hostetler <git@jeffhostetler.com> Signed-off-by: Derrick Stolee <stolee@gmail.com>
This is no longer true in general, not with supporting Clang out of the box. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
By default we will scan all references in "refs/heads/", "refs/tags/" and "refs/remotes/". Add command line opts let the use ask for all refs or a subset of them and to include a detached HEAD. Signed-off-by: Jeff Hostetler <git@jeffhostetler.com> Signed-off-by: Derrick Stolee <stolee@gmail.com> Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
This option was added in fa93bb2 (MinGW: Fix stat definitions to work with MinGW runtime version 4.0, 2013-09-11), i.e. a _long_ time ago. So long, in fact, that it still targeted MinGW. But we switched to mingw-w64 in 2015, which seems not to share the problem, and therefore does not require a fix. Even worse: This flag is incompatible with UCRT64, which we are about to support by way of upstreaming `mingw-w64-git` to the MSYS2 project, see msys2/MINGW-packages#26470 for details. So let's send that option into its well-deserved retirement. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Merge this early to resolve merge conflicts early. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
When 'git survey' provides information to the user, this will be presented in one of two formats: plaintext and JSON. The JSON implementation will be delayed until the functionality is complete for the plaintext format. The most important parts of the plaintext format are headers specifying the different sections of the report and tables providing concreted data. Create a custom table data structure that allows specifying a list of strings for the row values. When printing the table, check each column for the maximum width so we can create a table of the correct size from the start. The table structure is designed to be flexible to the different kinds of output that will be implemented in future changes. Signed-off-by: Derrick Stolee <stolee@gmail.com>
That option only matters there, and is in fact only really understood in those builds; UCRT64 versions of GCC, for example, do not know what to do with that option. 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>
This was pull request git-for-windows#1645 from ZCube/master Support windows container. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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>
…ws#4527) With this patch, Git for Windows works as intended on mounted APFS volumes (where renaming read-only files would fail). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
On Windows, the current working directory is pretty much guaranteed to contain a colon. If we feed that path to CVS, it mistakes it for a separator between host and port, though. This has not been a problem so far because Git for Windows uses MSYS2's Bash using a POSIX emulation layer that also pretends that the current directory is a Unix path (at least as long as we're in a shell script). However, that is rather limiting, as Git for Windows also explores other ports of other Unix shells. One of those is BusyBox-w32's ash, which is a native port (i.e. *not* using any POSIX emulation layer, and certainly not emulating Unix paths). So let's just detect if there is a colon in $PWD and punt in that case. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Specify symlink type in .gitattributes
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>
The TerminateProcess() function does not actually leave the child processes any chance to perform any cleanup operations. This is bad insofar as Git itself expects its signal handlers to run. A symptom is e.g. a left-behind .lock file that would not be left behind if the same operation was run, say, on Linux. To remedy this situation, we use an obscure trick: we inject a thread into the process that needs to be killed and to let that thread run the ExitProcess() function with the desired exit status. Thanks J Wyman for describing this trick. The advantage is that the ExitProcess() function lets the atexit handlers run. While this is still different from what Git expects (i.e. running a signal handler), in practice Git sets up signal handlers and atexit handlers that call the same code to clean up after itself. In case that the gentle method to terminate the process failed, we still fall back to calling TerminateProcess(), but in that case we now also make sure that processes spawned by the spawned process are terminated; TerminateProcess() does not give the spawned process a chance to do so itself. Please note that this change only affects how Git for Windows tries to terminate processes spawned by Git's own executables. Third-party software that *calls* Git and wants to terminate it *still* need to make sure to imitate this gentle method, otherwise this patch will not have any effect. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
The Windows Subsystem for Linux (WSL) version 2 allows to use `chmod` on NTFS volumes provided that they are mounted with metadata enabled (see https://devblogs.microsoft.com/commandline/chmod-chown-wsl-improvements/ for details), for example: $ chmod 0755 /mnt/d/test/a.sh In order to facilitate better collaboration between the Windows version of Git and the WSL version of Git, we can make the Windows version of Git also support reading and writing NTFS file modes in a manner compatible with WSL. Since this slightly slows down operations where lots of files are created (such as an initial checkout), this feature is only enabled when `core.WSLCompat` is set to true. Note that you also have to set `core.fileMode=true` in repositories that have been initialized without enabling WSL compatibility. There are several ways to enable metadata loading for NTFS volumes in WSL, one of which is to modify `/etc/wsl.conf` by adding: ``` [automount] enabled = true options = "metadata,umask=027,fmask=117" ``` And reboot WSL. It can also be enabled temporarily by this incantation: $ sudo umount /mnt/c && sudo mount -t drvfs C: /mnt/c -o metadata,uid=1000,gid=1000,umask=22,fmask=111 It's important to note that this modification is compatible with, but does not depend on WSL. The helper functions in this commit can operate independently and functions normally on devices where WSL is not installed or properly configured. Signed-off-by: xungeng li <xungeng@gmail.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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>
Previously, we did not install any handler for Ctrl+C, but now we really want to because the MSYS2 runtime learned the trick to call the ConsoleCtrlHandler when Ctrl+C was pressed. With this, hitting Ctrl+C while `git log` is running will only terminate the Git process, but not the pager. This finally matches the behavior on Linux and on macOS. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This patch introduces support to set special NTFS attributes that are interpreted by the Windows Subsystem for Linux as file mode bits, UID and GID. Signed-off-by: Johannes Schindelin <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>
…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>
Handle Ctrl+C in Git Bash nicely 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>
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>
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>
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>
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>
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>
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>
…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: main
From: 95570cec8c (Merge 'readme' into HEAD, 2018-06-07) (cf48f4341a..95570cec8c)
To: 21ebcf2183 (Merge 'readme' into HEAD, 2018-06-07) (69cf5c2480..21ebcf2183)
Statistics
Range-diff (click to expand)
1: c91e4bc = 1: fb83919 sideband: mask control characters
2: da77bb0 = 2: 36af480 sideband: introduce an "escape hatch" to allow control characters
3: 21da264 = 3: f9872ff sideband: do allow ANSI color sequences by default
4: 66d2f01 = 4: 04b2db4 unix-socket: avoid leak when initialization fails
5: dfd0bc0 = 5: 8b92837 Merge branch 'disallow-control-characters-in-sideband-channel'
6: f607a6e = 6: c02f089 grep: prevent
^$false match at end of file7: 305e0a5 = 7: aa1626c Merge branch 'fixes-from-the-git-mailing-list'
23: a579195 = 8: 14414ac vcpkg_install: detect lack of Git
25: 27a7883 = 9: fa2ba8f vcpkg_install: add comment regarding slow network connections
27: 8f97ba1 = 10: b355de4 vcbuild: install ARM64 dependencies when building ARM64 binaries
29: af69b20 = 11: 0e5f94b vcbuild: add an option to install individual 'features'
31: 39b6721 = 12: 421a5c1 cmake: allow building for Windows/ARM64
8: 2c93483 = 13: 1d29de0 mingw: include the Python parts in the build
33: 25ba97e = 14: 6987f20 ci(vs-build) also build Windows/ARM64 artifacts
9: df813d2 = 15: a00b3da win32/pthread: avoid name clashes with winpthread
35: 2bc554c = 16: 016c67b Add schannel to curl installation
36: c557488 = 17: 3b34759 hash-object: demonstrate a >4GB/LLP64 problem
10: 5337cf0 = 18: 79d8f35 git-compat-util: avoid redeclaring _DEFAULT_SOURCE
38: a2b945b = 19: 1b711ef cmake(): allow setting HOST_CPU for cross-compilation
39: 106b6ca = 20: beaa7d2 object-file.c: use size_t for header lengths
11: a74f65b = 21: d6e8184 Import the source code of mimalloc v2.2.7
12: 93a2ee5 = 22: d91cae9 t9350: point out that refs are not updated correctly
41: 1ce3aef = 23: 6f9486a CMake: default Visual Studio generator has changed
42: 773ff80 = 24: 017e9da hash algorithms: use size_t for section lengths
13: ad5293e = 25: 4b91383 mimalloc: adjust for building inside Git
14: ff151f1 = 26: 271ba1d transport-helper: add trailing --
44: 66ee770 = 27: f8017e2 mingw: demonstrate a
git addissue with NTFS junctions45: ad596f7 = 28: 6edaf91 .gitignore: add Visual Studio CMakeSetting.json file
46: de37ce6 = 29: 9b125bc hash-object --stdin: verify that it works with >4GB/LLP64
15: b7d9dbc = 30: 6d9926c mimalloc: offer a build-time option to enable it
48: 819b89e = 31: 5a61d7c t5505/t5516: allow running without
.git/branches/in the templates16: 118ef55 = 32: fbe4c6a remote-helper: check helper status after import/export
17: 18aea26 = 33: 08bd86b clean: do not traverse mount points
49: 1596507 = 34: 53f8807 strbuf_realpath(): use platform-dependent API if available
50: b015b6a = 35: 124ef9c http: use new "best effort" strategy for Secure Channel revoke checking
51: f4ff1ec = 36: 7d8c4d5 subtree: update
contrib/subtreetesttarget52: a05f51c = 37: 933b302 CMakeLists: add default "x64-windows" arch for Visual Studio
53: 528ca16 = 38: 78b28c4 hash-object: add another >4GB/LLP64 test case
18: 4713253 = 39: edcbbb2 mingw: use mimalloc
57: cee5d98 = 40: bd4f8c6 t5505/t5516: fix white-space around redirectors
54: 8375299 = 41: b0124a5 setup: properly use "%(prefix)/" when in WSL
19: c170ee8 = 42: f988595 Always auto-gc after calling a fast-import transport
20: ce9ed63 = 43: 004e4f5 mingw: prevent regressions with "drive-less" absolute paths
21: 05124cc = 44: efe7141 clean: remove mount points when possible
22: eb3acf6 = 45: a72fa7d transport: optionally disable side-band-64k
59: 1407306 = 46: cd0229d mingw: fix fatal error working on mapped network drives on Windows
60: 21c4596 = 47: 56f74c6 clink.pl: fix MSVC compile script to handle libcurl-d.lib
61: a34a96a = 48: aa91595 mingw: implement a platform-specific
strbuf_realpath()62: 2c5ca6e = 49: 737818c t3701: verify that we can add lots of files interactively
63: 60a79fe = 50: 7a7856e commit: accept "scissors" with CR/LF line endings
64: 662f49e = 51: b382d88 t0014: fix indentation
65: 12eecba = 52: 7197c12 git-gui: accommodate for intent-to-add files
66: f9ae221 = 53: a182f53 mingw: allow for longer paths in
parse_interpreter()67: 9666674 = 54: 203dcf0 compat/vcbuild: document preferred way to build in Visual Studio
68: e32328e = 55: 0d33bbe http: optionally send SSL client certificate
69: 73aa73e = 56: 5835f5c ci: run
contrib/subtreetests in CI builds70: 7f93ecb = 57: 8eac906 CMake: show Win32 and Generator_platform build-option values
71: e1f48fe = 58: 7143bae hash-object: add a >4GB/LLP64 test case using filtered input
24: 4a18e17 = 59: 46a74f2 windows: skip linking
git-<command>for built-ins26: f02560c = 60: 62d02e4 mingw: stop hard-coding
CC = gcc28: 754b9ab = 61: a262069 mingw: drop the -D_USE_32BIT_TIME_T option
30: 53cf7c9 = 62: 01c27fb mingw: only use -Wl,--large-address-aware for 32-bit builds
32: 606f974 = 63: 2e9c50d mingw: avoid over-specifying
--pic-executable34: dd9e694 = 64: e4ed928 mingw: set the prefix and HOST_CPU as per MSYS2's settings
37: 358810e = 65: ad3330e mingw: only enable the MSYS2-specific stuff when compiling in MSYS2
40: a472b80 = 66: a651491 mingw: rely on MSYS2's metadata instead of hard-coding it
43: 90021fe = 67: 659ab2f mingw: always define
ETC_*for MSYS2 environments47: 7d2b78a = 68: 7948678 max_tree_depth: lower it for clang builds in general on Windows
56: 9fa4b39 = 69: 24e0107 mingw: ensure valid CTYPE
78: 5e5b61c = 70: 78f97d5 ci: work around a problem with HTTP/2 vs libcurl v8.10.0
79: b4532d9 = 71: 6707fe8 mingw: allow
git.exeto be used instead of the "Git wrapper"80: 9906bd7 = 72: a169a42 revision: create mark_trees_uninteresting_dense()
81: f2ea2f6 = 73: 4fecf25 mingw: ignore HOMEDRIVE/HOMEPATH if it points to Windows' system directory
82: 6a4c8ec = 74: e039d64 survey: stub in new experimental 'git-survey' command
83: 54b57fd = 75: 4c524d9 Merge branch 'dscho-avoid-d-f-conflict-in-vs-master'
84: 9bbc0fc = 76: a7adbdb survey: add command line opts to select references
85: 9347107 = 77: 4c37895 clink.pl: fix libexpatd.lib link error when using MSVC
86: a3be7ea = 78: 0809950 survey: start pretty printing data in table form
87: bf23a13 = 79: bef911c Makefile: clean up .ilk files when MSVC=1
88: d909de0 = 80: edbc9ef survey: add object count summary
89: 4236c3f ! 81: f230056 vcbuild: add support for compiling Windows resource files
90: abbeddd = 82: e379182 survey: summarize total sizes by object type
92: 2b69fb8 = 83: a6fab2b config.mak.uname: add git.rc to MSVC builds
58: 5b43391 = 84: 943342f MinGW: link as terminal server aware
93: 63f53e1 = 85: 129a450 survey: show progress during object walk
96: db70db8 = 86: 451f61c clink.pl: ignore no-stack-protector arg on MSVC=1 builds
97: 2bd4abd = 87: 00bead6 http: optionally load libcurl lazily
98: ff1e531 = 88: 81505c3 survey: add ability to track prioritized lists
94: fdb09cb = 89: 59fec0b mingw: make sure
errnois set correctly when socket operations fail102: 27db3d0 = 90: 4c1ffd1 clink.pl: move default linker options for MSVC=1 builds
103: 5938e52 = 91: fabde9e http: support lazy-loading libcurl also on Windows
104: 3583ed8 = 92: 174f77d survey: add report of "largest" paths
99: 406c608 = 93: 7b01713 compat/mingw: handle WSA errors in strerror
55: be8748d = 94: 79b3364 Add config option
windows.appendAtomically108: bd6f3f9 = 95: 9a4bd0c cmake: install headless-git.
109: b23fcea = 96: d42bff8 http: when loading libcurl lazily, allow for multiple SSL backends
110: b2b7742 = 97: b70cc01 survey: add --top= option and config
72: 239d1fb = 98: fa049c1 compat/mingw.c: do not warn when failing to get owner
105: c9cd9cd = 99: 8c9cb7e compat/mingw: drop outdated comment
73: 65f9f56 = 100: 8f8123c mingw: $env:TERM="xterm-256color" for newer OSes
74: faa283a = 101: d751d3a winansi: check result and Buffer before using Name
75: 654c150 = 102: 4c0f78f mingw: change core.fsyncObjectFiles = 1 by default
76: 220c78c = 103: a4bd2c5 Fix Windows version resources
77: eddbaf4 = 104: dd6a3f7 status: fix for old-style submodules with commondir
114: 75e3804 = 105: 7c01d05 git.rc: include winuser.h
115: 30a8b03 = 106: 9ce79de mingw: do load libcurl dynamically by default
116: 66342c3 = 107: 64c0aaa Add a GitHub workflow to verify that Git/Scalar work in Nano Server
117: 742db0b = 108: 4ee9322 mingw: suggest
windows.appendAtomicallyin more cases118: 54d9aa4 = 109: 31de503 win32: use native ANSI sequence processing, if possible
119: 1d5c242 = 110: 20033e7 common-main.c: fflush stdout buffer upon exit
120: 870abb5 = 111: 0f5292c t5601/t7406(mingw): do run tests with symlink support
121: 72c3c12 = 112: 2968c15 win32: ensure that
localtime_r()is declared even in i686 builds122: 8d5a70c = 113: aeb8934 Fallback to AppData if XDG_CONFIG_HOME is unset
123: 8f621a1 = 114: ce13ee8 run-command: be helpful with Git LFS fails on Windows 7
124: 420a2ae = 115: 41eec74 survey: clearly note the experimental nature in the output
91: acbc67d = 116: cfd0a54 Merge 'remote-hg-prerequisites' into HEAD
95: 870cb6e = 117: f8197b1 Merge branch 'drive-prefix'
101: cb756b5 = 118: a0a8dbb Merge branch 'dont-clean-junctions'
107: 79f28c3 = 119: f2a5e4e Merge branch 'msys2-python'
113: e09845f = 120: 7852822 Update mimalloc to v2.2.7 (Update mimalloc to v2.2.7 git#6048)
132: 7898a3d = 121: 6f61c51 Merge pull request Config option to disable side-band-64k for transport git#2375 from assarbad/reintroduce-sideband-config
133: 3e1d57e = 122: a749de3 Merge pull request mingw: fix fatal error working on mapped network drives on Windows git#2488 from bmueller84/master
134: 5b5c777 = 123: c8a2cf9 Merge pull request clink.pl: fix MSVC compile script to handle libcurl-d.lib git#2501 from jeffhostetler/clink-debug-curl
135: 4c3f8ca = 124: 9d4013a Merge pull request Handle
git add <file>where <file> traverses an NTFS junction git#2504 from dscho/access-repo-via-junction136: 3c53d19 = 125: c96d199 Merge pull request Introduce and use the new "best effort" strategy for Secure Channel revoke checking git#2535 from dscho/schannel-revoke-best-effort
137: 50261e2 = 126: daa85c9 Merge pull request ci: avoid d/f conflict in vs/master git#2618 from dscho/avoid-d/f-conflict-in-vs/master
138: 9a912c6 = 127: 6b6ca26 Merge 'add-p-many-files'
139: 2b073f6 = 128: e10ffc5 Merge pull request Rationalize line endings for scissors-cleanup git#2714 from lbonanomi/crlf-scissors
140: b2ff40a = 129: e260817 Merge pull request t/t0014: fix: eliminate additional lines from trace git#2655 from jglathe/jg/t0014_trace_extra_info
141: e8ea81c = 130: 1d74d61 Merge 'git-gui/js/intent-to-add'
142: 5507bf8 = 131: 4734929 Merge pull request Vcpkg Install: detect lack of working Git, and note possible vcpkg time outs git#2351 from PhilipOakley/vcpkg-tip
143: cc24dfb = 132: f472938 Merge pull request Windows arm64 support git#2915 from dennisameling/windows-arm64-support
144: 0d913ca = 133: cc0cce5 Merge pull request cmake(): allow setting HOST_CPU for cross-compilation git#3327 from dennisameling/fix-host-cpu
145: ea2d435 = 134: b72eea1 Merge pull request mingw: allow for longer paths in
parse_interpreter()git#3165 from dscho/increase-allowed-length-of-interpreter-path146: 2267bdb = 135: 86a2bf9 Merge pull request Let the documentation reflect that there is no vs/master anymore git#3220 from dscho/there-is-no-vs/master-anymore
147: 76e4850 = 136: 6cfc677 Merge pull request http: Add support for enabling automatic sending of SSL client certificate git#3293 from pascalmuller/http-support-automatically-sending-client-certificate
148: 8ed27c5 = 137: 376e822 Merge pull request Add
contrib/subtreetest execution to CI builds git#3349 from vdye/feature/ci-subtree-tests149: 9ad2b30 = 138: d4d1a7a Merge pull request Make Git for Windows start builds in modern Visual Studio git#3306 from PhilipOakley/vs-sln
100: 6e9db3b = 139: f7d719f t5563: verify that NTLM authentication works
150: a827513 = 140: d43d1c7 Merge pull request Begin
unsigned long->size_tconversion to support large files on Windows git#3533 from PhilipOakley/hashliteral_t106: 337ac5c = 141: 8bfc5ec http: disallow NTLM authentication by default
151: 44ccb60 = 142: 5f3b189 Merge pull request Various fixes around
safe.directorygit#3791: Various fixes aroundsafe.directory111: 50c08c6 = 143: 65be957 t0301: actually test credential-cache on Windows
112: 592bb40 = 144: 91d93f3 http: warn if might have failed because of NTLM
152: 46bfa56 = 145: e0dac19 Merge pull request mingw: set $env:TERM=xterm-256color for newer OSes git#3751 from rkitover/native-term
125: 647b07b = 146: 0fd2d9b credential-cache: handle ECONNREFUSED gracefully
126: c606527 = 147: f9e1af2 reftable: do make sure to use custom allocators
127: 8c68589 = 148: c840166 check-whitespace: avoid alerts about upstream commits
128: 66c6a1b = 149: 3578fca t/t5571-prep-push-hook.sh: Add test with writing to stderr
129: 4e85a15 = 150: f2fe2ed credential: advertise NTLM suppression and allow helpers to re-enable
130: d7efc34 = 151: c31b224 dir: do not traverse mount points
131: 6c3679f = 152: 9c3427d win32: thread-utils: handle multi-socket systems
153: 2911a2e = 153: 7d91aa7 Merge pull request winansi: check result before using Name for pty git#3875 from 1480c1/wine/detect_msys_tty
154: c4b3444 = 154: 69a368d Merge branch 'optionally-dont-append-atomically-on-windows'
155: e9d3613 = 155: 8fa39fe Merge branch 'fsync-object-files-always'
156: 7fb651b = 156: 2c212de Merge pull request MinGW: link as terminal server aware git#3942 from rimrul/mingw-tsaware
157: 97fb2bc = 157: 574be7b Fix Windows version resources (Fix Windows version resources git#4092)
158: 9d18458 = 158: b836d3c Fix global repository field not being cleared (Fix global repository field not being cleared git#4083)
159: 48a87b5 = 159: 232c2ee Skip linking the "dashed"
git-<command>s for built-ins (Skip linking the "dashed"git-<command>s for built-ins git#4252)160: 9a232f3 = 160: 9c3f96a Add full
mingw-w64-git(i.e. regular MSYS2 ecosystem) support (Add fullmingw-w64-git(i.e. regular MSYS2 ecosystem) support git#5971)161: 1c8f1c0 = 161: adb0d45 Merge pull request Allow running Git directly from
C:\Program Files\Git\mingw64\bin\git.exegit#2506 from dscho/issue-2283162: 1277a4b = 162: 9458291 Merge pull request Include Windows-specific maintenance and headless-git git#2974 from derrickstolee/maintenance-and-headless
163: d218103 = 163: d3e9361 ARM64: Embed manifest properly (ARM64: Embed manifest properly git#4718)
164: 88242f6 = 164: 67252ba Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl (Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl git#4410)
165: 896c6b5 = 165: 6ddbbf8 Merge branch 'nano-server'
166: e4523a8 = 166: 4cfd037 Additional error checks for issuing the windows.appendAtomically warning (Additional error checks for issuing the windows.appendAtomically warning git#4528)
167: 14da627 = 167: d4d5bac win32: use native ANSI sequence processing, if possible (win32: use native ANSI sequence processing, if possible git#4700)
168: 3d601d7 = 168: cf110ed common-main.c: fflush stdout buffer when exit (common-main.c: fflush stdout buffer when exit git#4901)
169: d004d9d = 169: 3a0082e Merge branch 'run-t5601-and-t7406-with-symlinks-on-windows-10'
170: c4efaf6 = 170: 5c984a8 Merge branch 'Fix-i686-build-with-GCC-v14'
171: d542a95 = 171: 54382f4 Merge branch 'Fallback-to-AppData-if-XDG-CONFIG-HOME-is-unset'
172: 1e8c116 = 172: b052436 Merge branch 'run-command-be-helpful-when-Git-LFS-fails-on-Windows-7'
173: c69dda5 = 173: 2a469c5 pack-objects: create new name-hash algorithm (pack-objects: create new name-hash algorithm git#5157)
174: 861e364 = 174: f6b5642 Add path walk API and its use in 'git pack-objects' (Add path walk API and its use in 'git pack-objects' git#5171)
175: 21746e0 = 175: 2eae68f Add experimental 'git survey' builtin (Add experimental 'git survey' builtin git#5174)
176: 5860b0e = 176: 13b9382 credential-cache: handle ECONNREFUSED gracefully (credential-cache: handle ECONNREFUSED gracefully git#5329)
177: bf98033 = 177: 197b21c Merge branch 'reftable-vs-custom-allocators'
178: b07d5ea = 178: d8b0cc5 Merge branch 'check-whitespace-only-downstream'
179: 447849b = 179: e365310 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)
180: 1bb563c = 180: af85952 Merge branch 'disallow-ntlm-auth-by-default'
181: dbe5263 = 181: 3ec40f4 Don't traverse mount points in
remove_dir_recurse()(Don't traverse mount points inremove_dir_recurse()git#6151)182: c26353e = 182: 925f9f9 Detect number of cores better on multi-socket systems (Detect number of cores better on multi-socket systems git#6108)
183: bae2d2a = 183: d604b2b Merge branch 'ready-for-upstream'
184: 9cd756f = 184: 83bebad ci(macos): skip the
git p4tests185: 7a8bf99 = 185: 5f16d56 ci(macos): skip the
git p4tests (ci(macos): skip thegit p4tests git#5954)196: ff4763a = 186: 5908910 git-gui--askyesno: fix funny text wrapping
198: 7acc9c9 = 187: 738403f git-gui--askyesno (mingw): use Git for Windows' icon, if available
186: 9174374 = 188: a395258 Win32: make FILETIME conversion functions public
187: a16ae9b = 189: a15cbf3 Win32: dirent.c: Move opendir down
188: 6c71e1b = 190: 446fb93 mingw: make the dirent implementation pluggable
189: d74a23c = 191: b9d785d Win32: make the lstat implementation pluggable
190: 216b851 = 192: 18e43a3 mingw: add infrastructure for read-only file system level caches
191: a67885b = 193: 6747f9f mingw: add a cache below mingw's lstat and dirent implementations
192: 7738971 = 194: 5d8a22b fscache: load directories only once
193: 48307b6 = 195: 0978915 fscache: add key for GIT_TRACE_FSCACHE
194: 03eb12b = 196: 43dd4c6 fscache: remember not-found directories
195: 0c16196 = 197: e9e049f fscache: add a test for the dir-not-found optimization
197: a4d518e = 198: e48f87f add: use preload-index and fscache for performance
199: 7b1c56d = 199: 7236788 dir.c: make add_excludes aware of fscache during status
201: dffefd8 = 200: df0be22 fscache: make fscache_enabled() public
202: 9aa70b2 = 201: e8c3f62 dir.c: regression fix for add_excludes with fscache
203: 713fa05 = 202: 7577b65 fetch-pack.c: enable fscache for stats under .git/objects
204: 78e993e = 203: 077bbb4 checkout.c: enable fscache for checkout again
205: 11b3119 = 204: a8025f0 Enable the filesystem cache (fscache) in refresh_index().
206: 73bd46b = 205: 4dce576 fscache: use FindFirstFileExW to avoid retrieving the short name
207: 7f17de4 = 206: ac882f3 fscache: add GIT_TEST_FSCACHE support
208: bde68c0 = 207: 91271f0 fscache: add fscache hit statistics
209: 43dc6fb = 208: a68a7f6 unpack-trees: enable fscache for sparse-checkout
210: f496062 = 209: b404d3a status: disable and free fscache at the end of the status command
211: e05f605 = 210: 84a5094 mem_pool: add GIT_TRACE_MEMPOOL support
212: e5838a5 = 211: e07b277 fscache: fscache takes an initial size
213: b8d497c = 212: 96393bd fscache: update fscache to be thread specific instead of global
214: 3537f0e = 213: ceeab87 fscache: teach fscache to use mempool
215: 9023399 = 214: 3d3bd4f fscache: make fscache_enable() thread safe
216: 1622de2 = 215: faff12e fscache: teach fscache to use NtQueryDirectoryFile
217: b7d0b70 = 216: aaa723b fscache: remember the reparse tag for each entry
218: 198514b = 217: 1a86b9e Merge branch 'fscache'
219: 6830ca1 = 218: 0ef0fa1 fscache: implement an FSCache-aware is_mount_point()
220: c70c886 = 219: 8eed432 Merge pull request status: disable and free fscache at the end of the status command git#1909 from benpeart/free-fscache-after-status-gfw
221: 1eaebda = 220: 9e3d3d2 clean: make use of FSCache
222: 6d66857 = 221: 68399f5 Merge remote-tracking branch 'benpeart/fscache-per-thread-gfw'
223: e0f7dbe = 222: 30a2deb Merge branch 'dont-clean-junctions-fscache'
224: 09f0290 = 223: bf8df99 pack-objects (mingw): demonstrate a segmentation fault with large deltas
225: 3d6882e = 224: 85273fb mingw: support long paths
226: 9b7aadb = 225: 98db457 win32(long path support): leave drive-less absolute paths intact
227: c9e20d3 = 226: 1b50819 compat/fsmonitor/fsm-*-win32: support long paths
228: cff19fb = 227: 49360b1 clean: suggest using
core.longPathsif paths are too long to remove229: d902919 = 228: 6a2f67a mingw: Support
git_terminal_promptwith more terminals230: 49ee6db = 229: d15ba59 compat/terminal.c: only use the Windows console if bash 'read -r' fails
231: 5c63be5 = 230: a26281d mingw (git_terminal_prompt): do fall back to CONIN$/CONOUT$ method
232: 569c9b4 = 231: f98881c Win32: symlink: move phantom symlink creation to a separate function
233: eafefe4 = 232: fa2286c Introduce helper to create symlinks that knows about index_state
234: 956716a = 233: aa600df mingw: allow to specify the symlink type in .gitattributes
235: d856851 = 234: 28006d4 Win32: symlink: add test for
symlinkattribute236: 7e06522 = 235: 722886c mingw: explicitly specify with which cmd to prefix the cmdline
237: 116913f = 236: 145f01f mingw: when path_lookup() failed, try BusyBox
238: 254b28b = 237: 83a1c23 test-tool: learn to act as a drop-in replacement for
iconv239: b1e173d = 238: b7880c9 tests(mingw): if
iconvis unavailable, usetest-helper --iconv246: cb446fb = 239: 71d2d63 mingw: introduce code to detect whether we're inside a Windows container
240: b333ca8 = 240: e388122 gitattributes: mark .png files as binary
248: 22b51bb = 241: 6062947 mingw: when running in a Windows container, try to rename() harder
241: ddb3e4d = 242: d44652a tests: move test PNGs into t/lib-diff/
250: 2508db9 = 243: d878951 mingw: move the file_attr_to_st_mode() function definition
242: d04f181 = 244: 798a637 tests: only override sort & find if there are usable ones in /usr/bin/
252: 8482854 = 245: c259b1f mingw: Windows Docker volumes are not symbolic links
243: d99c3de = 246: d9794d2 tests: use the correct path separator with BusyBox
200: f72d983 = 247: 5d120cb Merge branch 'git-gui-askyesno'
254: fda55fc = 248: 63ea336 mingw: work around rename() failing on a read-only file
244: 0eadd1f = 249: 68e5b55 mingw: only use Bash-ism
builtin pwd -Wwhen available245: b6819f9 = 250: 1829bd4 tests (mingw): remove Bash-specific pwd option
247: dd535dd = 251: 849cbc4 test-lib: add BUSYBOX prerequisite
256: 4d0a8ce = 252: 8908c10 Merge branch 'gitk-and-git-gui-patches'
249: eae55b0 = 253: ba5dd30 t5003: use binary file from t/lib-diff/
257: 69806da = 254: 45be881 Merge branch 'long-paths'
251: c0bc895 = 255: d600d9f t5532: workaround for BusyBox on Windows
258: 5ed9966 = 256: f1374ce Merge branch 'msys2'
253: 70f9e42 = 257: bd3353b t5605: special-case hardlink test for BusyBox-w32
259: ca34bbc = 258: d853c40 Merge 'docker-volumes-are-no-symlinks'
255: aa0c9e3 = 259: f79b8db t5813: allow for $PWD to be a Windows path
260: 706d6ed = 260: 9a95047 mingw: try resetting the read-only bit if rename fails (Reset READONLY if rename fails git#4527)
261: d5a59d9 = 261: 59e2dfc t9200: skip tests when $PWD contains a colon
262: 12334c1 = 262: 44e5a10 Merge pull request Specify symlink type in .gitattributes git#1897 from piscisaureus/symlink-attr
263: 379d79a = 263: 93cebff Describe Git for Windows' architecture [no ci]
264: bb2a0c8 = 264: f5597c5 mingw: kill child processes in a gentler way
265: 5eb0f0f = 265: 6ced737 mingw: optionally enable wsl compability file mode bits
266: 3d15c0c = 266: ee13a4b Merge branch 'busybox-w32'
267: 17e8661 = 267: 86da41c Modify the Code of Conduct for Git for Windows
268: f2c6c91 = 268: c8b4bf2 mingw: really handle SIGINT
269: 54b748d = 269: f985e17 Merge branch 'wsl-file-mode-bits'
270: 79c2152 = 270: fff616e CONTRIBUTING.md: add guide for first-time contributors
271: e09cc7e = 271: 4d548a7 Partially un-revert "editor: save and reset terminal after calling EDITOR"
272: 6e7aecc = 272: 21c732a Merge pull request Handle Ctrl+C in Git Bash nicely git#1170 from dscho/mingw-kill-process
273: bc09403 = 273: bd1d642 README.md: Add a Windows-specific preamble
274: 3635472 = 274: 00325e5 reset: reinstate support for the deprecated --stdin option
275: 46979a1 = 275: 7b2de1d Merge branch 'un-revert-editor-save-and-reset'
276: 5b4dbe4 = 276: db01313 Add an issue template
277: 42e4ed2 = 277: 58c0450 Add a GitHub workflow to monitor component updates
278: cab8cfc = 278: 78d7a5e fsmonitor: reintroduce core.useBuiltinFSMonitor
279: 39b5041 = 279: b90dc70 Merge branch 'phase-out-reset-stdin'
280: b3b0f37 = 280: 0d7a477 Modify the GitHub Pull Request template (to reflect Git for Windows)
281: 7553f28 = 281: 89dba46 dependabot: help keeping GitHub Actions versions up to date
282: be468f2 = 282: 4635073 Merge branch 'deprecate-core.useBuiltinFSMonitor'
283: b297451 = 283: a7df69b SECURITY.md: document Git for Windows' policies
284: 54e0a5e = 284: b1cdf2b Merge pull request Start monitoring updates of Git for Windows' components in the open git#2837 from dscho/monitor-component-updates
285: 95570ce = 285: 21ebcf2 Merge 'readme' into HEAD