当我尝试将文件提交到本地存储库时,VS Code 返回给我一个无法理解的错误:
Error: mkdir --path-format=absolute
.git/info: no such file or directory
我尝试清理和清除缓存:没有任何效果。
我做了几次测试,并从 git 中删除了 hook。现在我可以在存储库上提交我的代码了:
$ echo "Test commit" > commit_message.txt
$ git commit -F commit_message.txt
Error: mkdir --path-format=absolute
.git/info: no such file or directory
$ mv .git/hooks .git/hooks_backup
$ git commit -F commit_message.txt
[dev eb27e22] Test commit
1 file changed, 1 insertion(+), 1 deletion(-)