我想知道如果有人可以給我一些關於如何使用git改變網絡驅動器的建議。如何正確使用網絡磁盤驅動器的git
我必須包含我所有的源文件的目錄複製到網絡驅動器,現在當我使用有關的任何與git我的錯誤fatal: Could not switch to 'W:/': No such file or directory
有沒有辦法改變這種混帳指向的位置至?
我沒有正確設置我的git存儲庫嗎?
我想知道如果有人可以給我一些關於如何使用git改變網絡驅動器的建議。如何正確使用網絡磁盤驅動器的git
我必須包含我所有的源文件的目錄複製到網絡驅動器,現在當我使用有關的任何與git我的錯誤fatal: Could not switch to 'W:/': No such file or directory
有沒有辦法改變這種混帳指向的位置至?
我沒有正確設置我的git存儲庫嗎?
您可以通過使用
$ git remote -v
這將輸出類似這樣查看您的git的遙控器:
origin [email protected]:user/repo.git (fetch)
origin [email protected]:user/repo.git (push)
您可以通過刪除它改變這種遠程,然後用適當的遠程
重新創建$ git remote rm origin
$ git remote add origin [email protected]:user/repo.git
或更簡單
$ git remote set-url origin [email protected]:user/repo.git
編輯您的回購中的'.git/config'文件。這個,或者使用像git remote這樣的命令行工具。 –