Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release #530

Merged
merged 38 commits into from
Nov 15, 2021
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
40f5934
Run release-winget on Windows Server
ldennington Oct 6, 2021
624251e
Update inno installer metadata
ldennington Oct 8, 2021
53ea286
Merge pull request #483 from ldennington/update-metadata
ldennington Oct 12, 2021
77a5748
docs: update README to list bad Git versions
mjcheetham Oct 12, 2021
6c0fb9e
docs: add missing DPAPI option to summary
mjcheetham Oct 14, 2021
8f63406
Merge pull request #488 from mjcheetham/badgitver-docs
mjcheetham Oct 15, 2021
4472ea0
registry: remove autodetection progress/info message
mjcheetham Oct 15, 2021
d872294
Merge pull request #494 from mjcheetham/no-auto-noise
mjcheetham Oct 20, 2021
3183fdb
Add PAT as possible option to credential.gitHubAuthModes (#496)
Shegox Oct 20, 2021
1b0ad58
Fix CONTRIBUTING.md link to LICENSE
julescubtree Oct 28, 2021
8b96141
Remove Microsoft from assembly names
ldennington Oct 20, 2021
e7a8807
Remove Microsoft from/generally update namespaces
ldennington Oct 21, 2021
c912943
Rename projects and directories
ldennington Oct 22, 2021
c35166d
fix the signing! woop yolo
ldennington Nov 1, 2021
5aa3590
Merge pull request #500 from ldennington/remove-microsoft-from-namespace
ldennington Nov 1, 2021
dd5b999
Add UI testing instructions to CONTRIBUTING
ldennington Nov 1, 2021
7609cec
Clean up README
ldennington Nov 1, 2021
73cb423
msauth: update to MSAL.NET 4.37
mjcheetham Nov 1, 2021
8cd79a3
proxy: match NO_PROXY formats to libcurl behaviour
mjcheetham Oct 20, 2021
f22fd0b
Merge pull request #510 from ldennington/add-ui-testing-instructions
mjcheetham Nov 2, 2021
a391785
Merge pull request #501 from mjcheetham/noproxy-globs
mjcheetham Nov 2, 2021
81cdb21
settings: match curl lowercase proxy envar behaviour
mjcheetham Oct 22, 2021
3bfcf41
Merge pull request #508 from julescubtree/update-contributing-guide
mjcheetham Nov 2, 2021
90a8d6d
Merge pull request #503 from mjcheetham/curl-envars
mjcheetham Nov 2, 2021
5e01de1
docs: update readme to call out G4W bundling
mjcheetham Nov 2, 2021
eac38a4
Merge pull request #512 from mjcheetham/msal-4.37
mjcheetham Nov 2, 2021
901f9ea
Merge pull request #513 from microsoft/docs-g4w
mjcheetham Nov 2, 2021
8d2d9ed
deb: include all shared libraries in Debian package
mjcheetham Nov 2, 2021
a193f94
Remove release-apt-get workflow
ldennington Nov 2, 2021
fcb3e0a
Remove apt-get install instructions from README.md
ldennington Nov 2, 2021
7edf9cd
Merge pull request #516 from ldennington/remove-release-apt-get
ldennington Nov 2, 2021
ac34798
Merge pull request #514 from mjcheetham/fix-deb
mjcheetham Nov 3, 2021
564045e
autodetect: set credential.provider after autodetect
mjcheetham Nov 3, 2021
45133e8
docs: use new Git for Windows installer screenshot
mjcheetham Nov 3, 2021
75d008d
Merge pull request #517 from mjcheetham/discovery-setconfig
mjcheetham Nov 3, 2021
f559bdc
Remove winget workflow
ldennington Nov 8, 2021
1d668b1
Merge pull request #520 from ldennington/remove-winget
ldennington Nov 8, 2021
0b2cdef
docs: update version cmd in issue template
mjcheetham Nov 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs: update README to list bad Git versions
Add a section to the README document that lists versions of Git that GCM
is known to have problems with, such as 2.26.2 that broke credential
configuration parsing.
  • Loading branch information
mjcheetham committed Oct 13, 2021
commit 77a5748f82e04463318172657b0338c630b95311
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,22 @@ repositories from inside of WSL.

[Please see the GCM Core on WSL docs](docs/wsl.md) for more information.

## Supported Git versions

Git Credential Manager Core tries to be compatible with the broadest set of Git
versions (within reason). However there are some know problematic releases of
Git that are not compatible.

- Git 1.x

The initial major version of Git is not supported or tested with GCM.

- Git 2.26.2

This version of Git introduced a breaking change with parsing credential
configuration that GCM relies on. This issue was fixed in commit [`12294990`](https://github.com/git/git/commit/12294990c90e043862be9eb7eb22c3784b526340)
of the Git project, and released in Git 2.27.0.

## How to use

Once it's installed and configured, Git Credential Manager Core is called implicitly by Git.
Expand Down