Rebase shears/main (#24222800034)#111
Open
gitforwindowshelper[bot] wants to merge 285 commits intobase/shears/main-24222800034from
Open
Rebase shears/main (#24222800034)#111gitforwindowshelper[bot] wants to merge 285 commits intobase/shears/main-24222800034from
gitforwindowshelper[bot] wants to merge 285 commits intobase/shears/main-24222800034from
Conversation
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>
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>
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>
Add FileVersion, which is a required field As not all required fields were present, none were being included Fixes git-for-windows#4090 Signed-off-by: Kiel Hurley <kielhurley@gmail.com>
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: 7e509c4476 (Merge 'readme' into HEAD, 2018-06-07) (116346c19a..7e509c4476)
To: 256f1d257f (Merge 'readme' into HEAD, 2018-06-07) (41d1b5d79e..256f1d257f)
Statistics
Range-diff (click to expand)
1: fc6a091 = 1: 0e57d3d sideband: mask control characters
2: ef44855 = 2: 9877064 sideband: introduce an "escape hatch" to allow control characters
3: 3caff5a = 3: 1226253 sideband: do allow ANSI color sequences by default
4: 988d3e2 = 4: 6a19f1d unix-socket: avoid leak when initialization fails
5: 790d861 = 5: f9fdab2 Merge branch 'disallow-control-characters-in-sideband-channel'
6: 3c5c2e0 = 6: 6bb2b10 grep: prevent
^$false match at end of file7: adadc0a = 7: da7d342 Merge branch 'fixes-from-the-git-mailing-list'
8: 42b961e = 8: 2242621 t9350: point out that refs are not updated correctly
9: 23a17a8 = 9: 6f77f7e transport-helper: add trailing --
10: 8d92732 = 10: 0ec7e2c remote-helper: check helper status after import/export
11: 705c35b = 11: 333d9c2 clean: do not traverse mount points
12: d7bc2d4 = 12: 2d513d3 Always auto-gc after calling a fast-import transport
13: a16863b = 13: 20a81f2 mingw: prevent regressions with "drive-less" absolute paths
14: b2bb22f = 14: af620ee clean: remove mount points when possible
15: e9a6c2b = 15: f6730c1 vcpkg_install: detect lack of Git
16: 4cc6a3f = 16: 123af1f vcpkg_install: add comment regarding slow network connections
17: bc0e545 = 17: db1845e vcbuild: install ARM64 dependencies when building ARM64 binaries
18: 6b02984 = 18: cff454b vcbuild: add an option to install individual 'features'
19: eb1647e = 19: 1ca7962 cmake: allow building for Windows/ARM64
20: d1f8c87 = 20: 6ed9850 mingw: include the Python parts in the build
21: 4c4f440 = 21: 87eb355 ci(vs-build) also build Windows/ARM64 artifacts
22: 097e975 = 22: 45f5638 win32/pthread: avoid name clashes with winpthread
23: 7d44229 = 23: 5b41a89 Add schannel to curl installation
24: cca9a8e = 24: 33b5956 hash-object: demonstrate a >4GB/LLP64 problem
25: a3a6422 = 25: 21aabd6 git-compat-util: avoid redeclaring _DEFAULT_SOURCE
26: 01fe138 = 26: 67ad0f9 cmake(): allow setting HOST_CPU for cross-compilation
27: 4fdd5db = 27: 321709d object-file.c: use size_t for header lengths
28: 75820b6 = 28: 781af08 Import the source code of mimalloc v2.2.7
29: d3c884c = 29: 9f49e2c CMake: default Visual Studio generator has changed
30: 0b2230b = 30: 0ef40ac hash algorithms: use size_t for section lengths
31: 8a4d103 = 31: ec061ba mimalloc: adjust for building inside Git
32: 31587e6 = 32: 94535f2 mingw: demonstrate a
git addissue with NTFS junctions33: 53b2101 = 33: c1d1903 .gitignore: add Visual Studio CMakeSetting.json file
34: aba1205 = 34: ff1b96c hash-object --stdin: verify that it works with >4GB/LLP64
35: 1733393 = 35: 45d4c1f mimalloc: offer a build-time option to enable it
36: 5e1e746 = 36: 954a515 t5505/t5516: allow running without
.git/branches/in the templates37: ebe808d = 37: d44dcb4 strbuf_realpath(): use platform-dependent API if available
38: 87de6d0 = 38: 612af38 http: use new "best effort" strategy for Secure Channel revoke checking
39: 461d209 = 39: 2682980 subtree: update
contrib/subtreetesttarget40: ddff42e = 40: 9b5e61e CMakeLists: add default "x64-windows" arch for Visual Studio
41: 752c364 = 41: 58bb572 hash-object: add another >4GB/LLP64 test case
42: 60ec10f = 42: 66defed setup: properly use "%(prefix)/" when in WSL
43: d150ca2 = 43: 21c58e0 Add config option
windows.appendAtomically44: e90e8a2 = 44: d635121 mingw: use mimalloc
45: 8dd0fee = 45: 2cc8955 t5505/t5516: fix white-space around redirectors
46: 7b8d8b5 = 46: eca599c MinGW: link as terminal server aware
47: 110c415 = 47: 012cec9 transport: optionally disable side-band-64k
48: 684729d = 48: d5c6cf0 mingw: fix fatal error working on mapped network drives on Windows
49: 9c3cb62 = 49: 789f820 clink.pl: fix MSVC compile script to handle libcurl-d.lib
50: 22baded = 50: c0f91ce mingw: implement a platform-specific
strbuf_realpath()51: 98fd173 = 51: de03d29 t3701: verify that we can add lots of files interactively
52: 7574c91 = 52: ba24991 commit: accept "scissors" with CR/LF line endings
53: b53656f = 53: c16e568 t0014: fix indentation
54: c1b4dd4 = 54: 263a699 git-gui: accommodate for intent-to-add files
55: 0652d00 = 55: a7f4cce mingw: allow for longer paths in
parse_interpreter()56: b807d1b = 56: 8dc4c32 compat/vcbuild: document preferred way to build in Visual Studio
57: 1af3dec = 57: 6727a18 http: optionally send SSL client certificate
58: 7eb85a4 = 58: 9782a4a ci: run
contrib/subtreetests in CI builds59: f98f30f = 59: a235324 CMake: show Win32 and Generator_platform build-option values
60: 58bccec = 60: d064c2d hash-object: add a >4GB/LLP64 test case using filtered input
61: d3a4eae = 61: ba3b567 compat/mingw.c: do not warn when failing to get owner
62: bbb1fa4 = 62: b62879f mingw: $env:TERM="xterm-256color" for newer OSes
63: b7f0184 = 63: 6842743 winansi: check result and Buffer before using Name
64: 4f06f5d = 64: 5818f1c mingw: change core.fsyncObjectFiles = 1 by default
65: a8433e5 = 65: 333914f Fix Windows version resources
66: 8b5e432 = 66: e51412a status: fix for old-style submodules with commondir
67: 74fc09c = 67: 22bb73b windows: skip linking
git-<command>for built-ins68: 1d2fa87 = 68: 53cfbec mingw: stop hard-coding
CC = gcc69: 6c629b3 = 69: be73920 mingw: drop the -D_USE_32BIT_TIME_T option
70: 116347c = 70: 68780b2 mingw: only use -Wl,--large-address-aware for 32-bit builds
71: 6e39129 = 71: afccb77 mingw: avoid over-specifying
--pic-executable72: f765afd = 72: e13d855 mingw: set the prefix and HOST_CPU as per MSYS2's settings
73: 849f69c = 73: 15ad8ba mingw: only enable the MSYS2-specific stuff when compiling in MSYS2
74: 04c9fe6 = 74: dec46d8 mingw: rely on MSYS2's metadata instead of hard-coding it
75: 1a5a5eb = 75: 69d2aa5 mingw: always define
ETC_*for MSYS2 environments76: 4ba290e = 76: e0b508f max_tree_depth: lower it for clang builds in general on Windows
77: c22c73f = 77: 7dc6427 mingw: ensure valid CTYPE
78: 4dcf14e = 78: c4e914f ci: work around a problem with HTTP/2 vs libcurl v8.10.0
79: ea00808 = 79: abd0049 mingw: allow
git.exeto be used instead of the "Git wrapper"80: 8b59b36 = 80: 1b030d0 revision: create mark_trees_uninteresting_dense()
81: e56925e = 81: 17f6147 mingw: ignore HOMEDRIVE/HOMEPATH if it points to Windows' system directory
82: 73fd10d = 82: 23bc741 survey: stub in new experimental 'git-survey' command
83: 0d1f2e1 = 83: 591c486 Merge branch 'dscho-avoid-d-f-conflict-in-vs-master'
84: 4bb31c7 = 84: 4ba1805 survey: add command line opts to select references
85: 675f0f6 = 85: 705fd7f clink.pl: fix libexpatd.lib link error when using MSVC
86: 65bb0a6 = 86: 9acdb9e survey: start pretty printing data in table form
87: f3b2e93 = 87: ff0fc43 Makefile: clean up .ilk files when MSVC=1
88: 9dc8a65 = 88: f3b2557 survey: add object count summary
89: c1218b2 = 89: 2cd2442 vcbuild: add support for compiling Windows resource files
90: 8c9a377 = 90: 06ab1be survey: summarize total sizes by object type
91: 1644441 = 91: e60bb26 config.mak.uname: add git.rc to MSVC builds
92: 6fc5d72 = 92: 4fd13ac survey: show progress during object walk
93: 559e42c = 93: bca7d6c mingw: make sure
errnois set correctly when socket operations fail94: adb34a0 = 94: ff379a4 clink.pl: ignore no-stack-protector arg on MSVC=1 builds
95: dbabed8 = 95: d9bf745 http: optionally load libcurl lazily
96: 61a029b = 96: ea32690 survey: add ability to track prioritized lists
97: cb76559 = 97: 2232336 compat/mingw: handle WSA errors in strerror
98: fafbc95 = 98: a15562d t5563: verify that NTLM authentication works
99: 12d1827 = 99: 879f702 clink.pl: move default linker options for MSVC=1 builds
100: f480d3d = 100: 3f86cc4 http: support lazy-loading libcurl also on Windows
101: cf60a92 = 101: ff89e95 survey: add report of "largest" paths
102: 3db1ed5 = 102: 94dc667 compat/mingw: drop outdated comment
103: 373fc5b = 103: 70e864a http: disallow NTLM authentication by default
104: a278bd0 = 104: 97d5988 cmake: install headless-git.
105: 1ad08c2 = 105: 1d2c66f http: when loading libcurl lazily, allow for multiple SSL backends
106: 1ae0ff7 = 106: a800693 survey: add --top= option and config
107: 72e9d9d = 107: a190dc8 t0301: actually test credential-cache on Windows
108: 9f3207b = 108: fba7ede http: warn if might have failed because of NTLM
109: 3b90218 = 109: f78bd85 git.rc: include winuser.h
110: bb68924 = 110: b7ca219 mingw: do load libcurl dynamically by default
111: 7c7e3e7 = 111: 543b8bd Add a GitHub workflow to verify that Git/Scalar work in Nano Server
112: 07fb88e = 112: aa19c4e mingw: suggest
windows.appendAtomicallyin more cases113: ab3f69b = 113: fb508e2 win32: use native ANSI sequence processing, if possible
114: e47ddf7 = 114: 21df6c5 common-main.c: fflush stdout buffer upon exit
115: 05b965a = 115: 22f4f62 t5601/t7406(mingw): do run tests with symlink support
116: ae85ca2 = 116: 5ee2a3e win32: ensure that
localtime_r()is declared even in i686 builds117: 57b0eba = 117: 162305f Fallback to AppData if XDG_CONFIG_HOME is unset
118: 8ead0db = 118: 969c10e run-command: be helpful with Git LFS fails on Windows 7
119: 7833200 = 119: 403b6f7 survey: clearly note the experimental nature in the output
120: 16e75ca = 120: e103c29 credential-cache: handle ECONNREFUSED gracefully
121: 395c732 = 121: 1cc31ec reftable: do make sure to use custom allocators
122: ffb4d5c = 122: 3f5cbb9 check-whitespace: avoid alerts about upstream commits
123: dd3f142 = 123: d2cdbb5 t/t5571-prep-push-hook.sh: Add test with writing to stderr
124: 4e4f34c = 124: 7b982f4 credential: advertise NTLM suppression and allow helpers to re-enable
154: 85d5f72 = 125: de7d4ee dir: do not traverse mount points
284: 14b0fc7 ! 126: 5ddf7c2 Detect number of cores better on multi-socket systems (Detect number of cores better on multi-socket systems git#6108)
125: cbdb596 = 127: cf23c09 Merge 'remote-hg-prerequisites' into HEAD
126: e9865ff = 128: fe4e320 Merge branch 'drive-prefix'
127: b45685e = 129: d4b09eb Merge branch 'dont-clean-junctions'
128: 9a8960f = 130: d8da2d8 Merge branch 'msys2-python'
129: 39dfcf6 = 131: 6dfaf81 Update mimalloc to v2.2.7 (Update mimalloc to v2.2.7 git#6048)
130: 5f08785 = 132: 36b790b Merge pull request Config option to disable side-band-64k for transport git#2375 from assarbad/reintroduce-sideband-config
131: 1fc80b6 = 133: ef6e527 Merge pull request mingw: fix fatal error working on mapped network drives on Windows git#2488 from bmueller84/master
132: 4696f3a = 134: 485c9e6 Merge pull request clink.pl: fix MSVC compile script to handle libcurl-d.lib git#2501 from jeffhostetler/clink-debug-curl
133: 734bca6 = 135: 52cbafd Merge pull request Handle
git add <file>where <file> traverses an NTFS junction git#2504 from dscho/access-repo-via-junction134: 963d542 = 136: e544c88 Merge pull request Introduce and use the new "best effort" strategy for Secure Channel revoke checking git#2535 from dscho/schannel-revoke-best-effort
135: f23c07e = 137: 960f5be Merge pull request ci: avoid d/f conflict in vs/master git#2618 from dscho/avoid-d/f-conflict-in-vs/master
136: 295234d = 138: 2c316ad Merge 'add-p-many-files'
137: c19b7ce = 139: 3be09d5 Merge pull request Rationalize line endings for scissors-cleanup git#2714 from lbonanomi/crlf-scissors
138: bab78c9 = 140: 0623ac8 Merge pull request t/t0014: fix: eliminate additional lines from trace git#2655 from jglathe/jg/t0014_trace_extra_info
139: 8ef651f = 141: c7afffb Merge 'git-gui/js/intent-to-add'
140: f7c3430 = 142: dbc50be Merge pull request Vcpkg Install: detect lack of working Git, and note possible vcpkg time outs git#2351 from PhilipOakley/vcpkg-tip
141: 56f9126 = 143: d84954d Merge pull request Windows arm64 support git#2915 from dennisameling/windows-arm64-support
142: 529212b = 144: 54e562e Merge pull request cmake(): allow setting HOST_CPU for cross-compilation git#3327 from dennisameling/fix-host-cpu
143: b1b171b = 145: 90e555c Merge pull request mingw: allow for longer paths in
parse_interpreter()git#3165 from dscho/increase-allowed-length-of-interpreter-path144: 4bfc124 = 146: def0392 Merge pull request Let the documentation reflect that there is no vs/master anymore git#3220 from dscho/there-is-no-vs/master-anymore
145: e0b7e29 = 147: dc11612 Merge pull request http: Add support for enabling automatic sending of SSL client certificate git#3293 from pascalmuller/http-support-automatically-sending-client-certificate
146: 73bfb1a = 148: e4e0417 Merge pull request Add
contrib/subtreetest execution to CI builds git#3349 from vdye/feature/ci-subtree-tests147: 405fe07 = 149: 7fd459f Merge pull request Make Git for Windows start builds in modern Visual Studio git#3306 from PhilipOakley/vs-sln
148: 338227c = 150: 530281f Merge pull request Begin
unsigned long->size_tconversion to support large files on Windows git#3533 from PhilipOakley/hashliteral_t149: 1b23d4d = 151: d20e810 Merge pull request Various fixes around
safe.directorygit#3791: Various fixes aroundsafe.directory150: bb6cb61 = 152: 85d52fb Merge pull request mingw: set $env:TERM=xterm-256color for newer OSes git#3751 from rkitover/native-term
151: aa4df52 = 153: 34e3388 Merge pull request winansi: check result before using Name for pty git#3875 from 1480c1/wine/detect_msys_tty
152: c2e6aeb = 154: 2ef5a0b Merge branch 'optionally-dont-append-atomically-on-windows'
153: 880e0aa = 155: 791d24d Merge branch 'fsync-object-files-always'
155: 8969f51 = 156: 209b7ab Merge pull request MinGW: link as terminal server aware git#3942 from rimrul/mingw-tsaware
156: 26c2c07 = 157: aef9bcc Fix Windows version resources (Fix Windows version resources git#4092)
157: 1d5cd8d = 158: 5eb74e8 Fix global repository field not being cleared (Fix global repository field not being cleared git#4083)
158: d341775 = 159: 61a3761 Skip linking the "dashed"
git-<command>s for built-ins (Skip linking the "dashed"git-<command>s for built-ins git#4252)159: 288a3db = 160: 1f7d3d2 Add full
mingw-w64-git(i.e. regular MSYS2 ecosystem) support (Add fullmingw-w64-git(i.e. regular MSYS2 ecosystem) support git#5971)160: 96d34c4 = 161: d3ba438 Merge pull request Allow running Git directly from
C:\Program Files\Git\mingw64\bin\git.exegit#2506 from dscho/issue-2283161: ea641ec = 162: 1fe6467 Merge pull request Include Windows-specific maintenance and headless-git git#2974 from derrickstolee/maintenance-and-headless
162: 7b05da0 = 163: 8b03aa8 ARM64: Embed manifest properly (ARM64: Embed manifest properly git#4718)
163: 3978aa7 = 164: 46e66ba Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl (Lazy load libcurl, allowing for an SSL/TLS backend-specific libcurl git#4410)
164: 64d5214 = 165: 1b17604 Merge branch 'nano-server'
165: 9de4abd = 166: a1c559a Additional error checks for issuing the windows.appendAtomically warning (Additional error checks for issuing the windows.appendAtomically warning git#4528)
166: f85eb86 = 167: 2d79256 win32: use native ANSI sequence processing, if possible (win32: use native ANSI sequence processing, if possible git#4700)
167: 191bbfd = 168: f02978d common-main.c: fflush stdout buffer when exit (common-main.c: fflush stdout buffer when exit git#4901)
168: f497474 = 169: 326422c Merge branch 'run-t5601-and-t7406-with-symlinks-on-windows-10'
169: c805aa0 = 170: 344493f Merge branch 'Fix-i686-build-with-GCC-v14'
170: e8f1800 = 171: 2d65ab2 Merge branch 'Fallback-to-AppData-if-XDG-CONFIG-HOME-is-unset'
171: 0abd5a1 = 172: d774397 Merge branch 'run-command-be-helpful-when-Git-LFS-fails-on-Windows-7'
172: 00f28f3 = 173: 6ad3b46 pack-objects: create new name-hash algorithm (pack-objects: create new name-hash algorithm git#5157)
173: 083f6b9 = 174: df2b00b Add path walk API and its use in 'git pack-objects' (Add path walk API and its use in 'git pack-objects' git#5171)
174: e697d96 = 175: b4c2201 Add experimental 'git survey' builtin (Add experimental 'git survey' builtin git#5174)
175: fbc867a = 176: 4b38038 credential-cache: handle ECONNREFUSED gracefully (credential-cache: handle ECONNREFUSED gracefully git#5329)
176: 50c4412 = 177: 12ae4ca Merge branch 'reftable-vs-custom-allocators'
177: 9694652 = 178: 985c05d Merge branch 'check-whitespace-only-downstream'
178: 3a1c062 = 179: 2ef68d6 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)
179: 9e4a7b7 = 180: 591c22a Merge branch 'disallow-ntlm-auth-by-default'
180: 123a480 = 181: 9a25e69 Don't traverse mount points in
remove_dir_recurse()(Don't traverse mount points inremove_dir_recurse()git#6151)-: ---------- > 182: b632604 Detect number of cores better on multi-socket systems (Detect number of cores better on multi-socket systems git#6108)
181: da2b45f = 183: 354b2d6 Merge branch 'ready-for-upstream'
182: c9209f8 = 184: 8f1dc34 ci(macos): skip the
git p4tests183: cdf6996 = 185: 62d522a ci(macos): skip the
git p4tests (ci(macos): skip thegit p4tests git#5954)184: 83e4f3a = 186: 8cc1479 git-gui--askyesno: fix funny text wrapping
185: 09a4187 = 187: df12fc8 git-gui--askyesno (mingw): use Git for Windows' icon, if available
186: fc5f1f0 = 188: b17486e Win32: make FILETIME conversion functions public
240: ec3db9e = 189: 2d7a396 Merge branch 'git-gui-askyesno'
187: 8fb9fff = 190: 5a5c816 Win32: dirent.c: Move opendir down
188: e5c0f7c = 191: 142bb84 mingw: make the dirent implementation pluggable
189: da38f15 = 192: 0443f51 Win32: make the lstat implementation pluggable
190: 9f038e7 = 193: 9770aed mingw: add infrastructure for read-only file system level caches
191: 402c883 = 194: db23674 mingw: add a cache below mingw's lstat and dirent implementations
192: a701465 = 195: d9f466d fscache: load directories only once
193: 9a3cb88 = 196: d922410 fscache: add key for GIT_TRACE_FSCACHE
194: 66e87d9 = 197: 57633c2 fscache: remember not-found directories
195: 643b774 = 198: b37a766 fscache: add a test for the dir-not-found optimization
196: e208809 = 199: acd45a0 add: use preload-index and fscache for performance
197: 790ed0e = 200: 2b11e70 dir.c: make add_excludes aware of fscache during status
198: f4038de = 201: d2dc2ed fscache: make fscache_enabled() public
199: e59f224 = 202: 141beee dir.c: regression fix for add_excludes with fscache
200: cbb87bc = 203: 6875a48 fetch-pack.c: enable fscache for stats under .git/objects
201: 3ccc050 = 204: 401d316 checkout.c: enable fscache for checkout again
202: 663854f = 205: 4bc9a33 Enable the filesystem cache (fscache) in refresh_index().
203: ae50697 = 206: c01c586 fscache: use FindFirstFileExW to avoid retrieving the short name
204: e3d8ef0 = 207: cf33743 fscache: add GIT_TEST_FSCACHE support
205: 829e1aa = 208: e933794 fscache: add fscache hit statistics
206: 5d4cea0 = 209: 20ae059 unpack-trees: enable fscache for sparse-checkout
207: 73caa5c = 210: 6ba03c0 status: disable and free fscache at the end of the status command
208: f0f0a20 = 211: c4006bc mem_pool: add GIT_TRACE_MEMPOOL support
209: 3eae7df = 212: 52df875 fscache: fscache takes an initial size
210: dc76b2b = 213: bae8b65 fscache: update fscache to be thread specific instead of global
211: 336da49 = 214: 8f31fa8 fscache: teach fscache to use mempool
212: ede2248 = 215: 35fa37e fscache: make fscache_enable() thread safe
213: 9af7e6a = 216: c24ac23 fscache: teach fscache to use NtQueryDirectoryFile
214: ea6bf90 = 217: f1abbc6 fscache: remember the reparse tag for each entry
215: d37558f = 218: b8cdf76 Merge branch 'fscache'
216: 2ef5335 = 219: 974f575 fscache: implement an FSCache-aware is_mount_point()
217: 0c28619 = 220: f681c5e Merge pull request status: disable and free fscache at the end of the status command git#1909 from benpeart/free-fscache-after-status-gfw
218: 9d51cf5 = 221: 42219aa clean: make use of FSCache
219: 823d922 = 222: 8b624ff Merge remote-tracking branch 'benpeart/fscache-per-thread-gfw'
220: f05b57c = 223: a9eb630 Merge branch 'dont-clean-junctions-fscache'
221: c6a99da = 224: ab944e5 pack-objects (mingw): demonstrate a segmentation fault with large deltas
222: 3b6db80 = 225: 294db1d mingw: support long paths
223: 06de18d = 226: 5c9695b win32(long path support): leave drive-less absolute paths intact
224: 9fc84bc = 227: a9ee1eb compat/fsmonitor/fsm-*-win32: support long paths
225: 55d0551 = 228: b4c27b8 clean: suggest using
core.longPathsif paths are too long to remove226: 038f3e5 = 229: 2973251 mingw: Support
git_terminal_promptwith more terminals227: 4b8d033 = 230: 3b586dc compat/terminal.c: only use the Windows console if bash 'read -r' fails
228: 43ffc90 = 231: 12e70d3 mingw (git_terminal_prompt): do fall back to CONIN$/CONOUT$ method
229: 3d70a88 = 232: 14ecff0 Win32: symlink: move phantom symlink creation to a separate function
230: bdc8796 = 233: ee82869 Introduce helper to create symlinks that knows about index_state
231: e63a1f0 = 234: a45b3cc mingw: allow to specify the symlink type in .gitattributes
233: 7e2b7aa = 235: 007ad5e Win32: symlink: add test for
symlinkattribute235: ab3b0a8 = 236: 0494aef mingw: explicitly specify with which cmd to prefix the cmdline
237: c5d2006 = 237: 8cd9a19 mingw: when path_lookup() failed, try BusyBox
239: 3d3d9d9 = 238: 6b2e51c test-tool: learn to act as a drop-in replacement for
iconv232: 32c7312 = 239: 7cf0bba mingw: introduce code to detect whether we're inside a Windows container
242: 85e7069 = 240: 0b65b2c tests(mingw): if
iconvis unavailable, usetest-helper --iconv234: 773c8c7 = 241: 102c6c0 mingw: when running in a Windows container, try to rename() harder
243: 19bfceb = 242: a73c957 gitattributes: mark .png files as binary
236: d587df3 = 243: 5ec29cc mingw: move the file_attr_to_st_mode() function definition
244: 60bf29c = 244: 871bdc8 tests: move test PNGs into t/lib-diff/
238: 5c32841 = 245: 8a7386e mingw: Windows Docker volumes are not symbolic links
245: 8806f41 = 246: 44d67fe tests: only override sort & find if there are usable ones in /usr/bin/
241: b3c27bc = 247: 19221eb mingw: work around rename() failing on a read-only file
246: 4cfe8c3 = 248: 738dc5e tests: use the correct path separator with BusyBox
247: 192c151 = 249: af8c30a mingw: only use Bash-ism
builtin pwd -Wwhen available248: fc31e51 = 250: 2a9b69f tests (mingw): remove Bash-specific pwd option
249: 73ff4c7 = 251: d7f1af6 test-lib: add BUSYBOX prerequisite
250: fc1f7bb = 252: 1db4c7f Merge branch 'gitk-and-git-gui-patches'
251: 886fd89 = 253: d50ad6e t5003: use binary file from t/lib-diff/
252: 4579392 = 254: 0c0e4f6 Merge branch 'long-paths'
253: 03f3ace = 255: b22036c t5532: workaround for BusyBox on Windows
254: dbf4ce5 = 256: 70b7dce Merge branch 'msys2'
256: 6e381c0 = 257: b1880ed t5605: special-case hardlink test for BusyBox-w32
257: 51f879f = 258: 3a6fd01 Merge 'docker-volumes-are-no-symlinks'
259: f0d4781 = 259: 5e54f5d t5813: allow for $PWD to be a Windows path
260: f1f8aff = 260: e47d4a1 mingw: try resetting the read-only bit if rename fails (Reset READONLY if rename fails git#4527)
262: d2e9190 = 261: d8af9ff t9200: skip tests when $PWD contains a colon
263: 8f40f8f = 262: 6fd2337 Merge pull request Specify symlink type in .gitattributes git#1897 from piscisaureus/symlink-attr
255: 7d441d2 = 263: 27ae82a Describe Git for Windows' architecture [no ci]
265: 87d4396 = 264: 5bfd7d3 mingw: kill child processes in a gentler way
266: 8d9b9dc = 265: 0da6895 mingw: optionally enable wsl compability file mode bits
267: 3520f1d = 266: 4fae058 Merge branch 'busybox-w32'
258: 111284e = 267: 4265ce0 Modify the Code of Conduct for Git for Windows
269: 995c08f = 268: c23f07a mingw: really handle SIGINT
270: 59c1ffc = 269: 928d843 Merge branch 'wsl-file-mode-bits'
261: 16f119d = 270: 14a4c0f CONTRIBUTING.md: add guide for first-time contributors
273: d8a1d3d = 271: f4b186f Partially un-revert "editor: save and reset terminal after calling EDITOR"
274: 7b4132a = 272: 0225ba6 Merge pull request Handle Ctrl+C in Git Bash nicely git#1170 from dscho/mingw-kill-process
264: d79353f = 273: e61cfb5 README.md: Add a Windows-specific preamble
275: 1e363b5 = 274: df36532 reset: reinstate support for the deprecated --stdin option
279: 72c4900 = 275: 3fb6282 Merge branch 'un-revert-editor-save-and-reset'
268: 45fc8ea = 276: 90faa36 Add an issue template
271: 1520609 = 277: 5a24b30 Add a GitHub workflow to monitor component updates
276: e343e65 = 278: f48f5b2 fsmonitor: reintroduce core.useBuiltinFSMonitor
280: f4b8f7b = 279: 1770728 Merge branch 'phase-out-reset-stdin'
272: df218c9 = 280: 080f1ef Modify the GitHub Pull Request template (to reflect Git for Windows)
277: f7e9e42 = 281: 9d53d64 dependabot: help keeping GitHub Actions versions up to date
281: 0b97d7e = 282: bd60e44 Merge branch 'deprecate-core.useBuiltinFSMonitor'
278: 290bfd1 = 283: 49eaf36 SECURITY.md: document Git for Windows' policies
282: 3e72712 = 284: 0dd74e1 Merge pull request Start monitoring updates of Git for Windows' components in the open git#2837 from dscho/monitor-component-updates
283: 8d2750e = 285: 256f1d2 Merge 'readme' into HEAD