git remote show origin什么都不返回

时间:2017-09-13 16:21:44

标签: git github

$ git remote show origin

绝对没有任何回报。当我尝试创建然后今天早上将新分支推送到我们的仓库时,我开始注意到一些奇怪的事情。我的推/拉命令刚刚退出而没有说什么。

有趣的是,以下命令显示了一些内容:

$ git config --get remote.origin.url
https://github.com/MYCOMPANY/BLAH.git

此外,还会返回:

$ git remote -v
origin  https://github.com/MYCOMPANY/BLAH.git (fetch)
origin  https://github.com/MYCOMPANY/BLAH.git (push)

我尝试删除原点:

$ git remote rm origin

然后重新添加它:

$ git remote add origin https://github.com/MYCOMPANY/BLAH.git

远程节目仍然失败。尝试快速进行拉动或推动会退出并报告任何内容。

 $ git fsck --full

返回一堆悬空提交和blob,但没有别的。

我不是一个强力用户,所以我觉得我有点不在我的元素中。我不确定还能做什么或者去哪里?

提前致谢。

修改:

$ git --version
git version 2.14.1.windows.1

1 个答案:

答案 0 :(得分:0)

好吧,我“弄清楚了”。

我从Windows卸载了git并重新安装了它(相同版本)。这次当我到达SSL层的选项时,我选择了默认的Windows层而不是OpenSSH。一切都开始奏效了。

不知道为什么或发生了什么。