Skip to content

Instantly share code, notes, and snippets.

@kangmasjuqi
Created November 26, 2018 06:40
Show Gist options
  • Save kangmasjuqi/a86600e3844f80490ebd292cac983234 to your computer and use it in GitHub Desktop.
Save kangmasjuqi/a86600e3844f80490ebd292cac983234 to your computer and use it in GitHub Desktop.
how to find list of git commits that affecting/changed specific file
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