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?
Asked
Active
Viewed 202 times
1 Answers
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