我无法在git上推送我的代码?

我无法在git上推送我的代码?,git,github,git-push,git-pull,Git,Github,Git Push,Git Pull,当我发出这个命令时,show的错误如下所示 git push origin master 显示错误 Couldn't find host bitbucket.org in the .netrc file; using defaults Hostname was NOT found in DNS cache Could not resolve proxy: proxy Closing connection 0 fatal: unable to access 'git@github.

当我发出这个命令时,show的错误如下所示

  git push origin master 
显示错误

 Couldn't find host bitbucket.org in the .netrc file; using defaults
 Hostname was NOT found in DNS cache
 Could not resolve proxy: proxy
 Closing connection 0
fatal: unable to access 'git@github.com:xyz/abc.git': Could not resolve proxy: proxy

你尝试过这个git克隆吗git@github.com:xyz/abc.git为什么错误消息同时提到bitbucket.org和github.com?实际上我使用了bitbucket.org。能否显示git remote show origin的结果?您的网络或代理配置有问题。请参阅:
无法找到主机
无法解析代理
。在我看来,您的system或git代理地址设置不正确(设置为
proxy
,这是不正确的网络地址)。还要查看
.netrc
文件,该文件也包含一些错误。您尝试过这个
git克隆吗git@github.com:xyz/abc.git
为什么错误消息同时提到bitbucket.org和github.com?实际上我使用了bitbucket.org。您能显示git remote show origin的结果吗?您的网络或网络存在问题代理配置。请参阅:
无法找到主机
无法解析代理
。在我看来,您的system或git代理地址设置不正确(设置为
proxy
,这是不正确的网络地址)。还要查看
.netrc
文件,该文件也包含一些错误。