How do I see the list of changed files for a single commit, in Git? -


when git status list of changed files. i'd list of changed files commit. there way use git show or other command that? thanks.

yes, pass --stat flag:

git show --stat 1268afe676e 

for commits, git show takes same formatting arguments git diff-tree, see the latter's documentation other formatting options.


Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

web applications - Making Python scripts work on MAMP -

cocoa - Converting NSString to keyCode+modifiers for AXUIElementPostKeyboardEvent -