在 git log 中搜尋提交字串
使用日誌中的一些字串搜尋 git 日誌:
git log [options] --grep "search_string"
例:
git log --all --grep "removed file"
將在所有分支的所有日誌中搜尋 removed file
字串。 ****
從 git 2.4+開始,可以使用 --invert-grep
選項反轉搜尋。
例:
git log --grep="add file" --invert-grep
將顯示所有不包含 add file
的提交。