Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

Is there any way to search through github projects in Windows? The Windows application does not seem to have the search functionality. What I am interested in is to search through the commits of a certain github project.

share|improve this question

closed as off topic by gnat, Michael K, Mark Booth, Jim G., psr Aug 17 '12 at 22:58

Questions on Programmers Stack Exchange are expected to relate to software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 2 down vote accepted

It is pretty easy to search through commits using TortoiseGit. Use 'show log' option to display history of commits and type in what you want to search for.

share|improve this answer
thanks! I use the official github client, but tortoise is also fine ... – paxRoman Aug 8 '12 at 14:46
2  
Another neat trick - to checkout or reset to a commit with a certain bit of text in it: git checkout :/'some text from the commit message' – AlexWebr Aug 8 '12 at 19:08

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