How to find the list of files that are changed or added during the last pull request.
Is there any specific command to identify the list of files changed in last pull request when conflit is not occured.
How to find the list of files that are changed or added during the last pull request.
Is there any specific command to identify the list of files changed in last pull request when conflit is not occured.
One answer I found here, you can use
git log -m -1 --name-only --pretty="format:" <Merge SHA>
Another way of doing that would be to use
git log
You'll get a list of all the commits, where you can grab the latest commit "hash" (I don't know what's the exact terminology for that) and use
git show
You'll see which files are changed and what was changed in them.