Skip to content
Merged
Changes from all commits
Commits
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
22 changes: 10 additions & 12 deletions docs/enterprise-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,10 @@ that can always be overridden by the user in the usual ways.
Default setting values come from the Windows Registry, specifically the
following keys:

### 32-bit Windows

```text
HKEY_LOCAL_MACHINE\SOFTWARE\GitCredentialManager\Configuration
```

### 64-bit Windows

```text
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\GitCredentialManager\Configuration
```

> GCM is a 32-bit executable on Windows. When running on a 64-bit
installation of Windows registry access is transparently redirected to the
`WOW6432Node` node.

By using the Windows Registry, system administrators can use Group Policy to
easily set defaults for GCM's settings.

Expand All @@ -55,6 +43,16 @@ those of the [Git configuration][config] settings.
The type of each registry key can be either `REG_SZ` (string) or `REG_DWORD`
(integer).

### 32-bit / x86

When running the 32-bit (x86) version of GCM on a 64-bit (x64 or ARM64)
installation of Windows, the registry access is transparently redirected to
the `WOW6432Node` node.

```text
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\GitCredentialManager\Configuration
```

## macOS

Default settings values come from macOS's preferences system. Configuration
Expand Down
Loading