After pulling from a git server, I'm trying to get a list of all changed files. I don't need any specific parts of code, just a list of files (with some kind of indication as to wether it's been added, removed or changed).
I first looked at using git log, but that appearantly only returns info from the last commit:
git log --name-status --max-count=1 --pretty=format:""
Since this appearantly only gets the changes from the last commit in a pull, I'm trying to find a way to get all the changes (the pull almost always exists out of multiple commits).
Is there any command for this? (I'm interacting with Git from PHP, btw)