0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Git】特定のファイルの特定の箇所のコミット情報を閲覧したい

Posted at

使い所

あるファイルのこの部分のコミット情報をみたい!という時に使えます。

コマンド

ファイルのパスを出力します。分かっていれば必要ないです。

## ファイルのパス検索
find ./ -name "ファイル名"   // 一致検索
find ./ -type f -name "**" // Like検索

git logを行数でフィルタリングします。

## 行数からコミットを検索する
git log -L 開始の行数,終了の行数:{ファイルのパス}

直前のlogで出力されたコミット番号から、コミット情報を閲覧します。

## コミット情報閲覧
git show {コミット番号} // コミットの情報を見れる

ちなみにVSCodeのGitLens使えば同じことできます。

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?