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
提前致谢
答案 0 :(得分:1)
git help http-push
(在Git 2.1.2上)告诉我:
注意:如果您的libcurl早于,则暂时禁用此命令 7.16,据报道该组合不起作用,有时也是如此 破坏了存储库。
我尝试过的一些事情:
git help http-push
无法正常工作