git报错remote: error: cannot run hooks/post-receive: No such file or directory

Posted lbrs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git报错remote: error: cannot run hooks/post-receive: No such file or directory相关的知识,希望对你有一定的参考价值。

错误情况如下图所示:

技术图片

 

 

如果你也显示这个错误但是其实在该路径上有上有这个文件,那么显然你遇到和我一样的情况,即你是Windows下创建的文件,但是试图在Lunix系统去打开它。这是在Windows下调用CentOS上文件显示的结果,如果你还有疑虑可以尝试在CentOS直接打开该文件,那么你将会遇到下面的错误:

-bash: hooks/post-receive: /bin/bash^M: bad interpreter: No such file or directory

因为各个操作系统的文件对于换行都是不一样的,对于DOS以及Windows操作系统是以CRLF标记换行,即一个回车+一个换行,而Linux或者Unix上面是以LF为标记的,即只有一个换行,因此两者的差异决定了两个系统的文件是不能随便移植的。

 

解决方案:

我说下我的解决方案哈,最简单的方式通过Linux命令将Windows文件转换为Lunix文件——dos2unix

不过在此之前还是要安装一下这个工具:

yum install -y dos2unix

完成后,直接命令加文件名称进行转换:

dos2unix post-receive

 

以上是关于git报错remote: error: cannot run hooks/post-receive: No such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

git 删除远程分支报错error: unable to delete ‘origin/xxx‘: remote ref does not exist

git报错remote: error: cannot run hooks/post-receive: No such file or directory

jenkins windows slave 报错ERROR: Error cloning remote repo 'origin'

Jenkins报错Error fetching remote repo ‘origin‘真正解决办法

git权限报错error: insufficient permission for adding an object to repository database

错误记录Android Studio 向 GitHub 提交代码报错 ( Push failed: Failed with error: Could not read from remote )(代码