Skip to content

Commit 6074e4e

Browse files
authored
Merge pull request #785 from GitCredentialManager/main
Release to fix macOS x64 installer
2 parents 57cd9d4 + cf5a693 commit 6074e4e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Git Credential Manager is currently available for Windows, macOS, and Linux\*. G
1818
- [GitHub SSH](https://help.github.com/en/articles/connecting-to-github-with-ssh)
1919
- [Bitbucket SSH](https://confluence.atlassian.com/bitbucket/ssh-keys-935365775.html)
2020

21-
Feature|Windows|macOS|Linux
21+
Feature|Windows|macOS|Linux\*
2222
-|:-:|:-:|:-:
23-
Installer/uninstaller|✓|✓|✓\*
24-
Secure platform credential storage|✓ [(see more)](docs/credstores.md)|✓ [(see more)](docs/credstores.md)|✓ [(see more)](docs/credstores.md)
23+
Installer/uninstaller|✓|✓|✓
24+
Secure platform credential storage [(see more)](docs/credstores.md)|✓|✓|✓
2525
Multi-factor authentication support for Azure DevOps|✓|✓|✓
2626
Two-factor authentication support for GitHub|✓|✓|✓
2727
Two-factor authentication support for Bitbucket|✓|✓|✓
@@ -31,7 +31,7 @@ Basic HTTP authentication support|✓|✓|✓
3131
Proxy support|✓|✓|✓
3232
`amd64` support|✓|✓|✓
3333
`x86` support|✓|_N/A_|✗
34-
`arm64` support|best effort|via Rosetta 2|best effort, no packages
34+
`arm64` support|best effort|✓|best effort, no packages
3535
`armhf` support|_N/A_|_N/A_|best effort, no packages
3636

3737
(\*) GCM guarantees support for the below Linux distributions. GCM maintainers also monitor and evaluate issues opened against other distributions to determine community interest/engagement and whether an emerging platform should become fully-supported.

docs/wsl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ _Inside your WSL installation_, run the following command to set GCM as the Git
4444
credential helper:
4545

4646
```shell
47-
git config --global credential.helper "/mnt/c/Program\ Files\ \(x86\)/Git\ Credential\ Manager\ Core/git-credential-manager-core.exe"
47+
git config --global credential.helper "/mnt/c/Program\ Files\ \(x86\)/Git\ Credential\ Manager/git-credential-manager-core.exe"
4848

4949
# For Azure DevOps support only
5050
git config --global credential.https://dev.azure.com.useHttpPath true

src/osx/Installer.Mac/dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fi
7070

7171
echo "Building for runtime '$RUNTIME'"
7272

73-
if [ "$RUNTIME" == "osx-x64"]; then
73+
if [ "$RUNTIME" == "osx-x64" ]; then
7474
DISTPATH="$INSTALLER_SRC/distribution.x64.xml"
7575
else
7676
DISTPATH="$INSTALLER_SRC/distribution.arm64.xml"

0 commit comments

Comments
 (0)