Created
November 26, 2018 06:40
-
-
Save kangmasjuqi/a86600e3844f80490ebd292cac983234 to your computer and use it in GitHub Desktop.
how to find list of git commits that affecting/changed specific file
This file contains hidden or 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
how to find list of git commits that affecting/changed specific file | |
# show list commit with diff/changes detail | |
git log -p -- __PATH_TO_FILE__ | |
# show list commit without diff/changes detail | |
git log -- __PATH_TO_FILE__ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment