1
0
Форкнуть 0

docs: Fix links between documentation pages.

This commit is contained in:
J Wyman 2018-02-21 23:49:47 -05:00
Родитель ef82862e31
Коммит 7b9db837fb
3 изменённых файлов: 21 добавлений и 19 удалений

Просмотреть файл

@ -41,7 +41,7 @@ Defaults to `Auto`.
git config --global credential.microsoft.visualstudio.com.authority AAD
See [GCM_AUTHORITY](Environment.md#GCM_AUTHORITY)
See [GCM_AUTHORITY](Environment.md#gcm_authority)
### httpProxy
@ -54,7 +54,7 @@ Defaults to not using a proxy server.
git config --global credential.github.com.httpProxy https://myproxy:8080
See [HTTP_PROXY](Environment.md#HTTP_PROXY%20/%20HTTPS_PROXY)
See [HTTP_PROXY](Environment.md#http_proxy--https_proxy)
### interactive
@ -64,7 +64,7 @@ See [HTTP_PROXY](Environment.md#HTTP_PROXY%20/%20HTTPS_PROXY)
git config --global credential.microsoft.visualstudio.com.interactive never
See [GCM_INTERACTIVE](Environment.md#GCM_INTERACTIVE)
See [GCM_INTERACTIVE](Environment.md#gcm_interactive)
### modalPrompt
@ -74,7 +74,7 @@ Supports `true` or `false`. Defaults to `true`.
git config --global credential.modalPrompt true
See [GCM_MODAL_PROMPT](Environment.md#GCM_MODAL_PROMPT)
See [GCM_MODAL_PROMPT](Environment.md#gcm_modal_prompt)
### namespace
@ -86,7 +86,7 @@ Supports any ASCII, alpha-numeric only value. Defaults to `git`.
git config --global credential.namespace name
See [GCM_NAMESPACE](Environment.md#GCM_NAMESPACE)
See [GCM_NAMESPACE](Environment.md#gcm_namespace)
### preserve
@ -97,7 +97,7 @@ Supports `true` or `false`. Defaults to `false`.
git config --global credential.visualstudio.com.preserve true
See [GCM_PRESERVE](Environment.md#GCM_PRESERVE)
See [GCM_PRESERVE](Environment.md#gcm_preserve)
### tokenDuration
@ -110,7 +110,7 @@ Defaults to the account token duration. Honored when authority is set to `AAD` o
git config --global credential.visualstudio.com.tokenDuration 24
See [GCM_TOKEN_DURATION](Environment.md#GCM_TOKEN_DURATION)
See [GCM_TOKEN_DURATION](Environment.md#gcm_token_duration)
### useHttpPath
@ -145,7 +145,7 @@ Supports `true` or `false`. Defaults to `true`. Ignored when authority is set to
git config --global credential.microsoft.visualstudio.com.validate false
See [GCM_VALIDATE](Environment.md#GCM_VALIDATE)
See [GCM_VALIDATE](Environment.md#gcm_validate)
### vstsScope
@ -156,7 +156,7 @@ Defaults to `vso.code_write|vso.packaging`; Honored when host is 'visualstudio.c
git config --global credential.microsoft.visualstudio.com.vstsScope vso.code_write|vso.packaging_write|vso.test_write
See [GCM_VSTS_SCOPE](Environment.md#GCM_VSTS_SCOPE)
See [GCM_VSTS_SCOPE](Environment.md#gcm_vsts_scope)
### writeLog
@ -169,7 +169,7 @@ Supports `true` or `false`. Defaults to `false`.
git config --global credential.writeLog true
See [GCM_WRITELOG](Environment.md#GCM_WRITELOG)
See [GCM_WRITELOG](Environment.md#gcm_writelog)
## Sample Configuration

Просмотреть файл

@ -25,6 +25,8 @@ Use `Integrated` or `NTLM` if the host is a Team Foundation, or other NTLM authe
Defaults to `Auto`.
See [credential.authority](Configuration.md#authority).
### GCM_CONFIG_NOLOCAL
Determines if the the GCM should ignore Git local configuration values.
@ -50,7 +52,7 @@ The value should the URL of the proxy server.
Defaults to not using a proxy server.
See [credential.httpProxy](Configuration.md#httpProxy).
See [credential.httpProxy](Configuration.md#httpproxy).
### GCM_HTTP_USER_AGENT
@ -74,7 +76,7 @@ Forces authentication to use a modal dialog instead of asking for credentials at
Supports `true` or `false`. Defaults to `true`.
See [credential.modalPrompt](Configuration.md#modalPrompt).
See [credential.modalPrompt](Configuration.md#modalprompt).
### GCM_NAMESPACE
@ -101,7 +103,7 @@ If the value is greater than the maximum duration set for the account, the accou
Defaults to the account token duration. Honored when authority is set to `AAD` or `MSA`.
See [credential.tokenDuration](Configuration.md#tokenDuration).
See [credential.tokenDuration](Configuration.md#tokenduration).
### GCM_TRACE
@ -140,7 +142,7 @@ The supported format is one or more [scope values](https://docs.microsoft.com/en
Defaults to `vso.code_write|vso.packaging`; Honored when host is 'visualstudio.com'.
See [credential.vstsScope](Configuration.md#vstsScope).
See [credential.vstsScope](Configuration.md#vstsscope).
### GCM_WRITELOG
@ -149,4 +151,4 @@ Logs are written to the local .git/ folder at the root of the repository.
__Note:__ This setting will not override the `GCM_TRACE` environment variable.
See [credential.writeLog](Configuration.md#writeLog).
See [credential.writeLog](Configuration.md#writelog).

Просмотреть файл

@ -48,11 +48,11 @@ For systems looking for **silent installation without any prompts**, use the `--
#### Additional Resources
* [Configuration Options](Configuration.md)
* [Usage Options](CredentialManager.md)
* [Environmental Variables](Environment.md)
* [Build Agent and Automation Support](Automation.md)
* [Frequently Asked Questions](Faq.md)
* [Configuration Options](Configuration.md)
* [Environmental Variables](Environment.md)
* [Usage Options](CredentialManager.md)
* [Build Agent and Automation Support](Automation.md)
* [Development and Debugging](Development.md)
* [Bitbucket Support](Bitbucket.md)