想优化一下工作流,利用hook自动部署至运行目录、gitee。
hook的执行情况:
git工作目录checkout到运行目录没问题:
git --work-tree=/www/hooktest checkout -f
但是以下命令时没有生效
cd /www/hooktest/ && git add . &&git commit -m test&&git push gitee master
但是当我登上服务器手动执行. hook的时候是成功的。
也就是说我在本地push的时候,hook内的cd、git命令操作是没有生效的。
是不是git执行hook不适用. 命令?
那么git是如何运行hook的呢?
阿波罗的战车