Last active
July 19, 2021 16:33
-
-
Save nguyenit67/a9faacbae9502c2f07bef8a114c767df to your computer and use it in GitHub Desktop.
Git show what changes has made of a commit use git-log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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