4

What I want to do is get a commit log of all the changes pertaining only to 1 folder in a repository. How, if at all, is this possible?

SSEMember
  • 2,103
  • 4
  • 20
  • 28
  • 1
    Found the answer here. Should've done more research. http://stackoverflow.com/questions/278192/view-the-change-history-of-a-file-using-git-versioning – SSEMember Jun 26 '12 at 17:16

1 Answers1

3
git log --all -- some/path

Added for completeness. You may want to use "find copies" and "find copies harder" first to see if you want to add another path in case this path was renamed or copied at some point in the history.

Adam Dymitruk
  • 124,556
  • 26
  • 146
  • 141