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