Possible Duplicate:
How to search through all commits in the repository?
Is there a way to search through commit headers using the command line?
You can now search for commits from either the main search page or within a repository. Quickly discover who removed set -e or find commits that involved refactoring. Check out… You can now search for commits from either the main search page or within a repository.
To find out which files changed in a given commit, use the git log --raw command. It's the fastest and simplest way to get insight into which files a commit affects.
On GitHub.com, you can access your project history by selecting the commit button from the code tab on your project. Locally, you can use git log . The git log command enables you to display a list of all of the commits on your current branch. By default, the git log command presents a lot of information all at once.
git log --grep=<pattern> Limit the commits output to ones with log message that matches the specified pattern (regular expression).
--git help log
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With