Question

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?

Était-ce utile?

La solution

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.

Autres conseils

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top