如何在git中的post-receive hook中选择已配置的文件?

时间:2018-01-09 10:43:56

标签: git push githooks git-post-receive

我需要获取文件名,这些文件名是在post-receive hook之后发布的。

#!/bin/bash

while read oldrev newrev refname
do
   /* If updated-file == "myFile", then do a specific task */
done

如何获得对已更改文件的引用?

1 个答案:

答案 0 :(得分:1)

我找到了一个简单的解决方案来获取已更改文件的列表。

git diff --name-only $oldrev $newrev