我正在尝试执行git pull并收到错误消息:
error: The following untracked working tree files would be overwritten by merge:
<myFileName>
Please move or remove them before you can merge.
因此,我尝试使用命令git rm --cache删除该文件,这会导致错误:
fatal: pathspec
<myFileName>
did not match any files
在这一点上,我被困住了。在删除文件之前,我无法拉动。但是,它告诉我我无法删除该文件。
我能做些什么来解决这个问题?