Zet - How do I find the commits on my PR that have affected a certain file? Eg pnpm-lock.json

How do I find the commits on my PR that have affected a certain file? Eg pnpm-lock.json

Use git log with -p

eg.

git log devel.. --oneline --name-only -p pnpm-lock.yaml

#git