我需要获取文件名,这些文件名是在post-receive hook之后发布的。
#!/bin/bash
while read oldrev newrev refname
do
/* If updated-file == "myFile", then do a specific task */
done
如何获得对已更改文件的引用?
答案 0 :(得分:1)
我找到了一个简单的解决方案来获取已更改文件的列表。
git diff --name-only $oldrev $newrev