1. ホーム
  2. git

[解決済み] フォルダのgit履歴の表示

2022-04-24 21:59:56

質問

あるフォルダ内の全ファイルのgitログ履歴を見るにはどうしたらいいですか?

特定のファイルのログを表示する方法については、いくつかの投稿を見つけましたが、特定のフォルダーのログについては見つけられませんでした。

解決方法を教えてください。

のどちらかを使用することができます。 foldername または foldername/* . どちらかの方法で動作するはずです。

git log -- path/to/folder
git log -- path/to/folder/*

この方法では、リネームされたファイルの履歴は追跡されません。

なお -- もオプションです。(gitログマニュアルより)

[--] <path>...

           Show only commits that are enough to explain how the files that match the specified paths came to be. See History Simplification below for
           details and other simplification modes.

           Paths may need to be prefixed with -- to separate them from options or the revision range, when confusion arises.