Rogério Dias
Rogério Dias

Reputation: 21

How to list all changed or modified files from all commits in a branch

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

Answers (1)

LeGEC
LeGEC

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

Related Questions