문제

I am under windows 7 with TortoiseGit. I have a local git repository with several hundred commits and I would like to find all commits having at least one file ending in .txt.

Is this possible? If yes, how?

도움이 되었습니까?

해결책

With tortoisegit I don't know!

But with a console you can use git log --oneline -- "*.txt". The --oneline-option gives you a overview of all commits.

다른 팁

Try opening the Show log and in the search bar and type .txt.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top