I have pipeline with this command:
export FILES=$(git diff-tree --no-commit-id --name-only --diff-filter=ACMR -r HEAD^^..HEAD)
but it will return files which are commited few commits before. My last commit has different diff. When I try this command on my local PC I see correct changed files, but pipeline generate different.
Is it possible that git on pipelines image is cached?
My pipeline script has no any cache settings.