「GitLab」git blameコマンドでファイルの変更履歴を確認する方法

2021年2月16日

書式
git blame オプション
-e 変更者のメールアドレスを表示
-f ファイル名を表示
-n 行番号を表示
-t 変更日時をミリ秒表示

使用例
1.「sample.jsp」変更履歴を確認
$ git blame sample.jsp

2.「sample.jsp」変更履歴を確認(メールアドレス)
$ git blame -e sample.jsp

3.「sample.jsp」変更履歴を確認(ファイル名)
$ git blame -f sample.jsp

GitLab

Posted by arkgame