My CI environment only has the branch being pushed. Is it possible to see all files that have changed since the creation of the branch without comparing it to another branch?
I found multiple examples comparing branches, but nothing that worked when only one branch is available.
I'm trying to think outside the box, like number of commits with the branch name then get that many commits from the log like such where -n would be the number of commits:
git log --name-only --pretty=format: -n 5 | sed '/^$/d' | uniq
but I cannot find a way to get the correct number of commits