git 预推送没有这样的文件或目录

问题描述 投票:0回答:2

刚刚在路径“myProjDir/.git/hooks”下创建了一个名为“pre-push”的新预推送文件

在尝试

git push --dry-run
时,我收到下一个错误:

fatal: cannot run .git/hooks/pre-push: No such file or directory

我可以做什么来解决这个问题?

linux git fatal-error githooks git-push
2个回答
1
投票

问题在于“预推送”文件的类型

我刚刚复制了预提交文件,将其重命名为预推送,更改了里面的代码,现在它可以工作了。

谢谢!


0
投票

您也可以尝试:

chmod 711 .git/hooks/pre-push
© www.soinside.com 2019 - 2024. All rights reserved.