使用 git log
命令查看提交記錄時,默認打印commit hash值、做者、提交日期、和提交信息。若是想要查看更多內容,能夠提供不一樣的參數來指定查看的信息。具體實例說明以下。git
git log
命令默認顯示的裏面只有author,沒有committer,相似於下面的信息:正則表達式
$ git log
commit b932a847f5xxxxx
Author: John <john@xxxx.com>
Date: Mon Oct 21 16:18:09 2019 +0800
hello release
複製代碼
若是要顯示committer的信息,能夠使用 --pretty=full
選項。例以下面顯示的信息:express
$ git log --pretty=full
commit b932a847f5xxxxx
Author: John <john@xxxx.com>
Commit: John <john@xxxx.com>
hello release
複製代碼
查看 man git-log 對 --pretty 選項說明以下:bash
--pretty[=<format>], --format=<format>
Pretty-print the contents of the commit logs in a given format, where <format> can be one of oneline, short, medium, full, fuller, email, raw and format:<string>.ui
默認的 medium 格式樣式以下:spa
medium
commit <sha1>
Author: <author>
Date: <author date>
<title line>
<full commit message>
複製代碼
能夠顯示 committer 信息的 full 格式樣式以下:code
full
commit <sha1>
Author: <author>
Commit: <committer>
<title line>
<full commit message>
複製代碼
這裏的 author 和 committer 的區別是,author 是進行這個修改的人,而 committer 是把這個修改提交到git倉庫的人。
通常來講,咱們本身修改代碼,而後執行 git commit,那麼既是 author,又是 committer。
若是別人用 git format-patch 生成 git patch,在patch文件裏面會包含修改者的名稱和郵箱信息。例如:orm
From 033abaaecdxxxx Mon Sep 17 00:00:00 2001
From: Jobs <jobs@xxxx.com>
Date: Mon, 21 Oct 2019 16:18:09 +0800
Subject: [PATCH] hello release
複製代碼
咱們拿到這個patch文件,用 git am 命令把patch合入本地倉庫,那麼 author 是這個patch文件的修改者 Jobs,而 committer 是咱們本身。ip
使用 git log --author=<pattern>
命令來查看某個做者的提交歷史。
使用 git log --committer=<pattern>
命令來查看某個提交者的提交歷史。
查看 man git-log 對這兩個選項的說明以下:ci
--author=<pattern>, --committer=<pattern>
Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression). With more than one --author=<pattern>, commits whose author matches any of the given patterns are chosen (similarly for multiple --committer=<pattern>).
即,所給的 pattern 參數能夠用正則表達式來匹配特定模式。舉例以下:
使用 git log --author=John
查看 John 的上庫信息,若是有多我的名都帶有 John,會匹配到多我的的提交歷史。
使用 git log --author=john@xxxx.com
來查看 john@xxxx.com
這個郵箱的提交歷史。
使用 git log --author=@xxxx.com
來查看 @xxxx.com
這個郵箱後綴的提交歷史。