Skip to content

Instantly share code, notes, and snippets.

@nguyenit67
Last active July 19, 2021 16:33
Show Gist options
  • Save nguyenit67/a9faacbae9502c2f07bef8a114c767df to your computer and use it in GitHub Desktop.
Save nguyenit67/a9faacbae9502c2f07bef8a114c767df to your computer and use it in GitHub Desktop.
Git show what changes has made of a commit use git-log
Show the last N commits from a certain author:
$ git log -n number --author=author
For example:
# (changes in latest commit)
$ git log --stat -n 1
# git-whatchanged show little more detail of all changes happened
$ git whatchanged
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment