I created one Git server on Win7 with SSHD held by WinSSH,
i built remote git there with syntax
ssh [email protected]
cd GitRepo/GitCRM/
git --bare init
exit
i can do scp with syntax
scp myFile [email protected]:GitRepo/GitCRM/
but i always got failed when do this:
git push [email protected]:GitRepo/GitCRM/ master
error message is :
fatal : ''GitRepo/GitCRM/'' does not appear to be a git repository
fatal : the remote end hung up enexpectedly
what should i fix?
== UPDATE == i install cygwin within openSSH to work as my new SSH server and all work fine