# Get system value
$ git config --system --get https.proxy
$ git config --system --get http.proxy
# Get global value
$ git config --global --get https.proxy
$ git config --global --get http.proxy
# Check configuration for your user
$ cat $HOME/.gitconfig
# Unset system value
$ git config --system --unset https.proxy
$ git config --system --unset http.proxy
# Unset global value
$ git config --global --unset https.proxy
$ git config --global --unset http.proxy
Your proxy could also be set as an environment variable. Check if your environment has any of the env variables http_proxy or https_proxy set up and unset them. Examples of how to set up:
# Linux
export http_proxy=http://proxy:8080
export https_proxy=https://proxy:8443
# Windows
set http_proxy http://proxy:8080
set https_proxy https://proxy:8443**strong text**
3条答案
按热度按时间nx7onnlm1#
当我尝试从Azure Git克隆时如何进行身份验证?
当你尝试从Azure git克隆git时,你可以使用你的个人访问令牌(PAT)或SSH进行身份验证。
Authenticate with personal access tokens
命令如下:
字符串
然后我们需要用PAT替换第一个
OrganizationName
。所以,它将是:型
或者您可以使用SSH密钥进行身份验证:
Use SSH key authentication的
型
最后,您也可以安装Git Credential Managers来登录Azure devops。安装后,当您使用git clone命令时,它会弹出一个窗口,让您输入用户名和密码:
Use Git Credential Managers to authenticate to Azure Repos的
希望这对你有帮助。
2hh7jdfx2#
从Azure Devops克隆存储库的一种常规方法是要求管理员将您自己的帐户添加到可以克隆存储库的人员组中,并使用您自己的帐户。
如果必须使用
adminusername
帐户,则另一种选择是在您的机器上生成ssh密钥,让管理员在repo上添加公钥(链接到adminusername
帐户),并通过ssh克隆repo。zynd9foi3#
字符串