Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 post-receive 构建一个钩子,我需要读取文件的内容(版本)。该文件可以随提交(新版本)一起更改,因此我无法读取现有的存储库。
我试过这个方法:
git cat-file blob $(git ls-files -s VERSION | awk '{print $2}')
但是在钩子文件夹中,它不起作用。
我怎样才能做到这一点?
只需使用
git show $commit:$file