我想将我的本地存储库克隆到远程。 我的本地系统是windows,其中remote是linux。 我使用以下命令在本地系统上进行了回购:
git init
git remote add origin ssh://user@example.com:22/home/example.git
git add -A
git commit -m "initial upload"
git pull origin master
在家里的远程服务器上,我试着写一下,
git clone d:/wamp/www/example_site example.com
但它给出了错误,
ssh: Could not resolve hostname d: Name or service not known
当我写
git clone 192.168.0.100:d/wamp/www/example_site example.com
它回应
ssh: connect to host 192.168.0.100 port 22: Connection timed out
记住我的本地系统是windows。
我遵循了本教程。 Setup Git Repository On Remote Server And Local machine
我是git的新手并且已经尝试了很多方法但却找不到运气。请帮忙。