执行git clone <repo-name>会产生fatal: could not create work tree dir <repo-name>. File exists。这是意料之外的。
git clone <repo-name>
fatal: could not create work tree dir <repo-name>. File exists
pengsaosao1#
你也许能找到出路。
请确保您没有打开任何其他终端/窗口到该文件夹。如果有,请检查您的其他“虚拟桌面”。您可能在该文件夹上打开了powershell,然后WSL-ed或远程连接到另一台计算机。
我刚刚遇到了这种情况。我删除了一个新的拉文件夹,一切都告诉我,文件夹不见了,但我有一个终端的路径打开,即使它不存在。这可能是一个Windows唯一的问题。给未来的我和其他可能会失去15分钟生命的人一个提示。
new9mtju2#
如果您在VSCode中使用.devcontainer,请检查容器是否正在运行到Docker(docker ps -a)中,并将其删除(docker stop {container_id} && docker rm {container_id})。
docker ps -a
docker stop {container_id} && docker rm {container_id}
2条答案
按热度按时间pengsaosao1#
你也许能找到出路。
请确保您没有打开任何其他终端/窗口到该文件夹。如果有,请检查您的其他“虚拟桌面”。您可能在该文件夹上打开了powershell,然后WSL-ed或远程连接到另一台计算机。
我刚刚遇到了这种情况。我删除了一个新的拉文件夹,一切都告诉我,文件夹不见了,但我有一个终端的路径打开,即使它不存在。这可能是一个Windows唯一的问题。
给未来的我和其他可能会失去15分钟生命的人一个提示。
new9mtju2#
如果您在VSCode中使用.devcontainer,请检查容器是否正在运行到Docker(
docker ps -a
)中,并将其删除(docker stop {container_id} && docker rm {container_id}
)。