我安裝了Git for Windows,以克隆和提取託管在遠程Linux服務器上的項目。 在我的倉庫(d:/庫/我的項目),我啓動下面的命令Git如何訪問存儲庫Windows本地機器?
git clone [email protected]:/var/www/web/my-project/.git
git pull origin master
到目前爲止好。每當在服務器上應用修改時,我都會拉取項目文件。 但現在我想從遠程服務器上拉或推送到我的本地存儲庫。 我嘗試了很多東西,但我不知道如何訪問位於本地機器上的存儲庫。 事情是這樣:
git pull [email protected]:/d/repositories/my-project/.git master
是行不通的,Git會說:
SSH:無法解析主機名我-PC:名稱或服務不知道 致命的:無法從遠程存儲庫中讀取。
有人可以幫助我嗎?
[在窗口,在本地文件系統GIT克隆回購(可能的重複http://stackoverflow.com/questions/2519933/git-clone-repo-across-local-file-system-in-windows ) – raina77ow