web-dev-qa-db-fra.com

Comment rechercher dans les messages de commit en utilisant la ligne de commande?

Duplicate possible:
Comment parcourir toutes les commits du référentiel?

Existe-t-il un moyen de rechercher dans les en-têtes de commit en utilisant la ligne de commande?

269
Coderama
git log --grep=<pattern>
    Limit the commits output to ones with log message that matches the 
    specified pattern (regular expression).

-- journal d'aide git

409
hobbs
git log --oneline | grep PATTERN
183
czchen