我在 Win7 上用 WinSSH 持有的 SSHD 创建了一台 Git 服务器,
我在那里用语法构建了远程 git
ssh user@128.21.33.5
cd GitRepo/GitCRM/
git --bare init
exit
我可以用语法做 scp
scp myFile user@128.21.33.5:GitRepo/GitCRM/
但这样做时我总是失败:
git push user@128.21.33.5:GitRepo/GitCRM/ master
错误信息是:
fatal : ''GitRepo/GitCRM/'' does not appear to be a git repository
fatal : the remote end hung up enexpectedly
我应该解决什么问题?
==更新==我在openSSH中安装cygwin作为我的新SSH服务器并且一切正常