Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Found the answer here. Should've done more research. stackoverflow.com/questions/278192/… – SSEMember Jun 26 '12 at 17:16

1 Answer

up vote 1 down vote accepted
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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.