Reputation: 21
I need help to list all modified and changed branch files, but search all commits. The command I am using brings only the last commit.
git show --stat nome_branch --oneline
Upvotes: 0
Views: 105
Reputation: 52081
If you want a view for human consumption, try one of the following :
git log --name-only
git log --name-status
git log --stat
# maybe add --graph and --oneline options :
git log --oneline --graph --stat # or --name-only or --name-status ...
Upvotes: 1