Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git log -G式を含む差分の履歴を検索しますが、見つかった各差分のコミット メッセージのみを出力します。
git log -G
これを行う方法はありますが、差分の実際の内容も出力しますか?
-p オプションを使用します。
git log -p -G mysearch
さて、ありgit diffます。そのための手順を読んでみてください ( man git-diff)。
git diff
man git-diff
コミット ID とファイル名を使用して、特定のものを比較できます。
git diff <commit_id> <filename> <other_commit_id> <filename>
これにより、指定されたコミット時に指定されたファイルの差分が表示されます。