我想写一个脚本,它可以查找自某个特定日期以来目录中是否有被git commit ...更改的文件。在Groovy文件中,在其中一个阶段中,它会进行测试,但是如果文件自上次以来没有更改,我不想运行测试。
git commit ...
ovfsdjhp1#
if [ -n "$(git log --since 'particular date' filename)" ]; then echo changed fi
if [ -n "$(git shortlog --since 'particular date' filename0" ]; then echo changed fi
1条答案
按热度按时间ovfsdjhp1#