Skip to content

Commit b00c5ac

Browse files
authored
Merge pull request #350 from microsoft/main
Cut new release
2 parents 4123596 + e498936 commit b00c5ac

27 files changed

+313
-32
lines changed

.azure-pipelines/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
trigger:
2-
- master
2+
- main
33

44
variables:
55
configuration: Release

.azure-pipelines/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pr:
2-
- master
2+
- main
33
- release
44

55
variables:

.github/workflows/build-installers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Build-Installers
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [ master, release ]
6+
branches: [ main, release ]
77
pull_request:
8-
branches: [ master ]
8+
branches: [ main ]
99

1010
jobs:
1111
linux:

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: GCM-Core
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [ master, linux ]
6+
branches: [ main, linux ]
77
pull_request:
8-
branches: [ master, linux ]
8+
branches: [ main, linux ]
99

1010
jobs:
1111
validate_gcm:

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Git Credential Manager Core
22

3-
Branch|Status
4-
-|-
5-
master|[![Build Status](https://mseng.visualstudio.com/AzureDevOps/_apis/build/status/Teams/VCDesktop/Git-Credential-Manager-Core/GCM-CI?branchName=master)](https://mseng.visualstudio.com/AzureDevOps/_build/latest?definitionId=7861&branchName=master)
3+
[![Build Status](https://github.com/microsoft/Git-Credential-Manager-Core/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/microsoft/Git-Credential-Manager-Core/actions/workflows/continuous-integration.yml)
64

75
---
86

docs/azrepos-users-and-tokens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The Azure Repos host provider supports creating multiple types of credential:
88
- Microsoft identity OAuth tokens (experimental)
99

1010
To select which type of credential the Azure Repos host provider will create
11-
and use, you can set the [`credential.azreposCredentialType`](https://github.com/microsoft/Git-Credential-Manager-Core/blob/master/docs/configuration.md#credentialazreposcredentialtype-experimental)
12-
configuration entry (or [`GCM_AZREPOS_CREDENTIALTYPE`](https://github.com/microsoft/Git-Credential-Manager-Core/blob/master/docs/environment.md#GCM_AZREPOS_CREDENTIALTYPE-experimental)
11+
and use, you can set the [`credential.azreposCredentialType`](configuration.md#credentialazreposcredentialtype-experimental)
12+
configuration entry (or [`GCM_AZREPOS_CREDENTIALTYPE`](environment.md#GCM_AZREPOS_CREDENTIALTYPE-experimental)
1313
environment variable).
1414

1515
### Azure DevOps personal access tokens

docs/configuration.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Specify which authentication flow should be used when performing Microsoft authe
258258

259259
Defaults to `auto`.
260260

261-
**Note:** If [`credential.msauthUseBroker`](#credentialmsauthusebroker) is set
261+
**Note:** If [`credential.msauthUseBroker`](#credentialmsauthusebroker-experimental) is set
262262
to `true` and the operating system authentication broker is available, all flows
263263
will be delegated to the broker. If both of those things are true, then the
264264
value of `credential.msauthFlow` has no effect.
@@ -280,12 +280,14 @@ git config --global credential.msauthFlow devicecode
280280

281281
---
282282

283-
### credential.msauthUseBroker
283+
### credential.msauthUseBroker _(experimental)_
284284

285285
Use the operating system account manager where available.
286286

287287
Defaults to `false`. This default is subject to change in the future.
288288

289+
_**Note:** before you enable this option on Windows, please [review the details](windows-broker.md) about what this means to your local Windows user account._
290+
289291
Value|Description
290292
-|-
291293
`true`|Use the operating system account manager as an authentication broker.
@@ -297,7 +299,7 @@ Value|Description
297299
git config --global credential.msauthUseBroker true
298300
```
299301

300-
**Also see: [GCM_MSAUTH_USEBROKER](environment.md#GCM_MSAUTH_USEBROKER)**
302+
**Also see: [GCM_MSAUTH_USEBROKER](environment.md#GCM_MSAUTH_USEBROKER-experimental)**
301303

302304
---
303305

docs/environment.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ Specify which authentication flow should be used when performing Microsoft authe
404404

405405
Defaults to `auto`.
406406

407-
**Note:** If [`GCM_MSAUTH_USEBROKER`](#gcm_msauth_usebroker) is set to `true`
407+
**Note:** If [`GCM_MSAUTH_USEBROKER`](#gcm_msauth_usebroker-experimental) is set to `true`
408408
and the operating system authentication broker is available, all flows will be
409409
delegated to the broker. If both of those things are true, then the value of
410410
`GCM_MSAUTH_FLOW` has no effect.
@@ -432,12 +432,14 @@ export GCM_MSAUTH_FLOW="devicecode"
432432

433433
---
434434

435-
### GCM_MSAUTH_USEBROKER
435+
### GCM_MSAUTH_USEBROKER _(experimental)_
436436

437437
Use the operating system account manager where available.
438438

439439
Defaults to `false`. This default is subject to change in the future.
440440

441+
_**Note:** before you enable this option on Windows, please [review the details](windows-broker.md) about what this means to your local Windows user account._
442+
441443
Value|Description
442444
-|-
443445
`true`|Use the operating system account manager as an authentication broker.
@@ -455,7 +457,7 @@ SET GCM_MSAUTH_USEBROKER="true"
455457
export GCM_MSAUTH_USEBROKER="false"
456458
```
457459

458-
**Also see: [credential.msauthUseBroker](configuration.md#credentialmsauthusebroker)**
460+
**Also see: [credential.msauthUseBroker](configuration.md#credentialmsauthusebroker-experimental)**
459461

460462
---
461463

docs/img/aad-bitlocker.png

55.8 KB
Loading

docs/img/aad-disconnect.png

41.7 KB
Loading

0 commit comments

Comments
 (0)