I apolagise if this isn\'t very clear but in Git, is there a way to see all changed files on a branch, by name only. As far as I know I can use git log to see files that ha
I am using this command to find out the list of N files changed between two versions, here N is 50
git log --pretty=format: --name-only ... | sort | uniq -c | sort -rg | head -50