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.
ブランチの 1 つに "config.ru" ファイルがあり (どのブランチか思い出せません)、ある時点でそれを ".gitignore" に追加しました (関連する場合と関連しない場合があります -- 私は関係ありません)。承知しました)。
今、私は自分の履歴でそれを見つけて表示したいと思います。試してみgit log --all -- config.ruましたが、結果は得られませんでした。どうすればファイルを見つけることができますか?
git log --all -- config.ru
あなたが試すことができます
git log --all --stat | grep -10 "config.ru"
--stat オプションは、ファイル名とともにコミット ログを表示します。
また
git log --walk-reflogs --stat | grep -10 "config.ru"
--walk-reflogs オプションは、コミットの祖先チェーンを歩くのではなく、reflog コミットを示します。