我正在尝试隐藏一些不需要的更改,以便可以更改到master分支。
当我尝试隐藏更改时,出现以下错误:
git stash
error: open("source_files/aws_user_list/aws_users_all.txt"): No such file or directory
fatal: Unable to process path source_files/aws_user_list/aws_users_all.txt
Cannot save the current worktree state
但是,它正在抱怨的文件在那里:
ls -lh source_files/aws_user_list/aws_users_all.txt
-rwxrwxrwx 1 root root 0 Nov 9 13:49 source_files/aws_user_list/aws_users_all.txt
当我用google搜索这个问题时,我看到的只是删除.git / index.lock文件的答案。
我该怎么办才能克服此错误并保存我的更改?