-1

How to display all updated file name on a particular branch. I have created a feature/[branchName] and after many commits on it, I would like to display all updated files from the first commit to the last one, on that branch.

knoppix
  • 116
  • 1
  • 8

1 Answers1

1

Switch to the branch:

$ git checkout <branch_name>

Show commit logs with full diff:

$ git log -p
Andy Sukowski-Bang
  • 1,402
  • 7
  • 20
  • git log -p didn't display only branch commits, it show me all project commit in chronological order. ```git diff --name-only master...``` or ```git diff origin/master``` solve the issue, thanks – knoppix Mar 24 '21 at 20:05