LoginSignup
0
0

More than 3 years have passed since last update.

git logをgrepして対象commitを抽出する

Posted at

commitされた差分の中に悪いコードが紛れ込んでいたとして、それをローカルでgrepしたいとする。 git log にgrepオプションがあるのでそれを使う。

grepオプション使ってハッシュだけ表示する

git log --pretty=%H -S"target"

grepオプション使って差分の内容も表示する

git log -p -S"target"

犯人探しをする仕事はとてもつらい。

0
0
2

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