Git http-push不是一个git-command

时间:2014-10-10 15:27:36

标签: git

git非常新,只是根据教程说明进行设置:

git init
git add --all
git commit -m "Initial Commit"
git remote add origin http://user@server/trunk.git

哪一切都很顺利

然而,当我跑步时:

git push origin master

我收到以下错误:

git: 'http-push' is not a git-command. See 'git --help'.

我在opensuse中运行git版本1.6.0.2

提前致谢

1 个答案:

答案 0 :(得分:1)

git help http-push(在Git 2.1.2上)告诉我:

  

注意:如果您的libcurl早于,则暂时禁用此命令   7.16,据报道该组合不起作用,有时也是如此   破坏了存储库。

我尝试过的一些事情:

  • 使用HTTPS或SSH代替HTTP
  • 找出您的libcurl版本并在必要时进行更新
  • Update Git如果git help http-push无法正常工作
顺便说一下,1.6.0.2是six years old,所以无论如何我都会考虑升级它。