标签: git githooks
我正在为post-receive构建一个钩子,我需要读取文件的内容(VERSION)。此文件可以随提交(新版本)一起更改,因此我无法读取现有的存储库。
我试过这个方法:
git cat-file blob $(git ls-files -s VERSION | awk '{print $2}')
但是在hook文件夹中,它不起作用。
我该怎么做?
答案 0 :(得分:2)
只需使用
git show $commit:$file