我想知道是否有人可以就如何使用git来改变网络驱动器给我一些建议。
我不得不将包含我所有源文件的目录复制到网络驱动器,现在当我使用与git有关的任何内容时,我收到错误fatal: Could not switch to 'W:/': No such file or directory
有没有办法改变git指向的位置?
我没有正确设置我的git存储库吗?
答案 0 :(得分:0)
您可以使用
查看您的git遥控器$ git remote -v
这将输出如下内容:
origin git@host:user/repo.git (fetch)
origin git@host:user/repo.git (push)
您可以通过删除遥控器来更改此遥控器,然后使用适当的遥控器
重新创建它$ git remote rm origin
$ git remote add origin git@myhost:user/repo.git
或更简单
$ git remote set-url origin git@myhost:user/repo.git