git问题-could not open ‘.git/COMMIT_EDITMSG‘: Invalid argument

git提交错误

could not open ‘.git/COMMIT_EDITMSG’: Invalid argument

Commit failed with error
		0 files committed, 57 files failed to commit: [RC-298] migration & optimize
		could not open '.git/COMMIT_EDITMSG': Invalid argument

在网上查到的大多数错误信息是could not open ‘.git/COMMIT_EDITMSG’: Permission denied,没有Invalid argument

错误分析

既然说是参数错误,查看一下该文件,找到项目的.git隐藏文件,一般在项目根目录下,打开COMMIT_EDITMSG文件,发现里面的分支信息与我将要提交的分支不一致,修改为将要提交的分支,正确提交

错误文件内容

[RC-297] migration & optimize

修改后文件内容

[RC-298] migration & optimize

这个错误导致的根本原因是在创建新的分支后,复制使用了原有分支的.git文件夹,所以导致了参数错误

Git Pull Failed: cannot open .git/FETCH_HEAD: Invalid argument

之后遇到该问题

Git Pull Failed: cannot open .git/FETCH_HEAD: Invalid argument

找到项目的.git隐藏文件,一般在项目根目录下删除对应的FETCH_HEAD文件,类似这种问题删除文件基本能解决

你可能感兴趣的:(前端模块开发,git)