File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
src/shared/Microsoft.AzureRepos Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -239,11 +239,11 @@ See detailed information [here](https://aka.ms/gcm/httpproxy).
239239- [ Credential stores] ( docs/credstores.md )
240240- [ Architectural overview] ( docs/architecture.md )
241241- [ Host provider specification] ( docs/hostprovider.md )
242+ - [ Azure Repos OAuth tokens] ( docs/azrepos-users-and-tokens.md )
242243
243244## Experimental Features
244245
245246- [ Windows broker (experimental)] ( docs/windows-broker.md )
246- - [ Azure Repos OAuth tokens (experimental)] ( docs/azrepos-users-and-tokens.md )
247247
248248## Contributing
249249
Original file line number Diff line number Diff line change 55The Azure Repos host provider supports creating multiple types of credential:
66
77- Azure DevOps personal access tokens
8- - Microsoft identity OAuth tokens (experimental)
8+ - Microsoft identity OAuth tokens
99
1010To select which type of credential the Azure Repos host provider will create
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 )
11+ and use, you can set the [ ` credential.azreposCredentialType ` ] ( configuration.md#credentialazreposcredentialtype )
12+ configuration entry (or [ ` GCM_AZREPOS_CREDENTIALTYPE ` ] ( environment.md#GCM_AZREPOS_CREDENTIALTYPE )
1313environment variable).
1414
1515### Azure DevOps personal access tokens
@@ -24,7 +24,7 @@ PATs have a limited lifetime and new tokens must be created once they expire. In
2424Git Credential Manager, when a PAT expired (or was manually revoked) this
2525resulted in a new authentication prompt.
2626
27- ### Microsoft identity OAuth tokens (experimental)
27+ ### Microsoft identity OAuth tokens
2828
2929"Microsoft identity OAuth token" is the generic term for OAuth-based access
3030tokens issued by Azure Active Directory for either Work and School Accounts
Original file line number Diff line number Diff line change @@ -508,7 +508,7 @@ Credential: "git:https://bob@github.com/example/myrepo" (user = bob)
508508
509509---
510510
511- ### credential.azreposCredentialType _ (experimental) _
511+ ### credential.azreposCredentialType
512512
513513Specify the type of credential the Azure Repos host provider should return.
514514
@@ -527,4 +527,4 @@ More information about Azure Access tokens can be found [here](azrepos-azuretoke
527527git config --global credential.azreposCredentialType oauth
528528```
529529
530- ** Also see: [ GCM_AZREPOS_CREDENTIALTYPE] ( environment.md#GCM_AZREPOS_CREDENTIALTYPE-experimental ) **
530+ ** Also see: [ GCM_AZREPOS_CREDENTIALTYPE] ( environment.md#GCM_AZREPOS_CREDENTIALTYPE ) **
Original file line number Diff line number Diff line change @@ -670,7 +670,7 @@ export GCM_MSAUTH_USEBROKER="false"
670670
671671---
672672
673- ### GCM_AZREPOS_CREDENTIALTYPE _ (experimental) _
673+ ### GCM_AZREPOS_CREDENTIALTYPE
674674
675675Specify the type of credential the Azure Repos host provider should return.
676676
@@ -695,4 +695,4 @@ SET GCM_AZREPOS_CREDENTIALTYPE="oauth"
695695export GCM_AZREPOS_CREDENTIALTYPE=" oauth"
696696```
697697
698- ** Also see: [ credential.azreposCredentialType] ( configuration.md#azreposcredentialtype-experimental ) **
698+ ** Also see: [ credential.azreposCredentialType] ( configuration.md#azreposcredentialtype ) **
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Set your user-level Git configuration (`~/.gitconfig`) to use GCM. If you pass
3131`--system` to these commands, they act on the system-level Git configuration
3232(`/etc/gitconfig`) instead.
3333
34- ### azure-repos (experimental)
34+ ### azure-repos
3535
3636Interact with the Azure Repos host provider to bind/unbind user accounts to Azure DevOps
3737organizations or specific remote URLs, and manage the authentication authority cache.
Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ private static string GetAccountNameForCredentialQuery(InputArguments input)
389389 /// <returns>True if Personal Access Tokens should be used, false otherwise.</returns>
390390 private bool UsePersonalAccessTokens ( )
391391 {
392- // Default to using PATs whilst the Azure AT functionality is being tested
392+ // Default to using PATs
393393 const bool defaultValue = true ;
394394
395395 if ( _context . Settings . TryGetSetting (
@@ -410,7 +410,7 @@ private bool UsePersonalAccessTokens()
410410
411411 default :
412412 _context . Streams . Error . WriteLine (
413- $ "warning: unknown Azure Repos credential type '{ valueStr } ' - using default option ") ;
413+ $ "warning: unknown Azure Repos credential type '{ valueStr } ' - using PATs ") ;
414414 return defaultValue ;
415415 }
416416 }
You can’t perform that action at this time.
0 commit comments