解决fatal: cannot run .git/hooks/commit-msg: No such file or directory的问题

Posted Rudon滨海渔村

tags:

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

一开始,按照网上的办法试来试去,都不行。。。包括:

cp .git/hooks/pre-commit /tmp/pre-commit
tr -d ‘\\r’ < /tmp/pre-commit > .git/hooks/pre-commit

解决办法:

在其他路径,重建一个同样的git库,把自己改动的文件全部覆盖到这个文件夹里,
git add .
git commit -m "xxx"
git push -u origin master
这时,云上的库内容就对了!
我们再把实际的库文件夹删掉,原地git clone,搞定!
可add可commit可push!

代码:

<假如库名叫proNews,存放于 /var/www/proNews/>
cd /var/www/
mkdir tmp
cd /var/www/tmp/
git clone git@gitee.com:XXX/YYY.git
<这时就有了另一个干净的库>
cd /var/www/tmp/proNews/
<把修改过的文件都往这里扔>
git status
git add .
git commit -m "XXXX"
git push -u origin master
<推送完毕,过桥拆板>
sudo rm -R /var/www/tmp/
cd /var/www/
mv proNews/ proNews-Bad/
git clone git@gitee.com:XXX/YYY.git
cd proNews
git status
<搞定!>

以上是关于解决fatal: cannot run .git/hooks/commit-msg: No such file or directory的问题的主要内容,如果未能解决你的问题,请参考以下文章

实操-完美解决repo init 错误 fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle

实操-完美解决repo init 错误 fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle

实操-完美解决repo init 错误 fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle

[Git:commit错误] Fatal: cannot do a partial commit during a merge

git 拉取远程分支报错(fatal: '' is not a commit and a branch '' cannot be created from it)(示例

fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle