Git 拉取问题:URL 存储在哪里 GIT 用于执行他的拉取请求?
Git pull issue: where is the URL stored GIT goes for performing his pull requests?
一般来说,我的 GIT 扩展应用程序运行良好,但是当我使用 VPN 时,我遇到了这个问题,同时试图拉取我的 Module-Solution
:
"git" pull --rebase --progress "origin"
fatal: unable to access 'http://git.Server_URL/Git_Server/Module-Solution.git/':
Could not resolve host: git.Server_URL
Done
Press Enter or Esc to exit...
这是因为在使用 VPN 时,找不到 git.Server_URL
。
我想知道git.Server_URL
配置在哪里,Git_Server
怎么样?
供您参考:在使用 git bash
时,我得到了完全相同的错误。
您可以使用 git remote -v show
or get them with git remote get-url
and update them with git remote set-url
检查为您的遥控器配置的 URL
配置存储在 per-repository 配置文件 .git/config
中,请参阅 git config
。
一般来说,我的 GIT 扩展应用程序运行良好,但是当我使用 VPN 时,我遇到了这个问题,同时试图拉取我的 Module-Solution
:
"git" pull --rebase --progress "origin"
fatal: unable to access 'http://git.Server_URL/Git_Server/Module-Solution.git/':
Could not resolve host: git.Server_URL
Done
Press Enter or Esc to exit...
这是因为在使用 VPN 时,找不到 git.Server_URL
。
我想知道git.Server_URL
配置在哪里,Git_Server
怎么样?
供您参考:在使用 git bash
时,我得到了完全相同的错误。
您可以使用 git remote -v show
or get them with git remote get-url
and update them with git remote set-url
配置存储在 per-repository 配置文件 .git/config
中,请参阅 git config
。