List of all files that have been updated/created in a branch #2416
Answered
by
stefanhaller
cemalokten
asked this question in
Q&A
-
Is it possible to view all files that have been changed in a branch, not just a single commit? I am pretty new to Git and would find this useful when reviewing PR's. |
Beta Was this translation helpful? Give feedback.
Answered by
stefanhaller
Feb 7, 2023
Replies: 1 comment
-
You can do this by navigating to the last commit before the branch, hit |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cemalokten
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do this by navigating to the last commit before the branch, hit
W
and enter, then navigating back to the tip of the branch (e.g. with<
). You are now in diff mode, so the main panel shows the entire diff of the whole branch. You can then hit enter to see the list of files changed in the branch.