「Git入門」git blameコマンドでファイルの変更履歴を確認する
構文
git blame <option> <filename>
オプション
-f ファイル名
-n 行番号
-t メールアドレス
–help ヘルプ
-L 行の位置
使用例
1.変更履歴を確認
git -f blame test.php
2.出力する行の位置
git blame -L 50,60 test.php
Coding Changes the World
構文
git blame <option> <filename>
オプション
-f ファイル名
-n 行番号
-t メールアドレス
–help ヘルプ
-L 行の位置
使用例
1.変更履歴を確認
git -f blame test.php
2.出力する行の位置
git blame -L 50,60 test.php