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
Post a Comment