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 リポジトリの特定のプログラマーによって、どのファイルが正確に変更され、ソース コードで何が正確に変更されたかを何らかの方法でドキュメント化する必要があります。それをとても簡単で素敵にする方法はありますか?何かツールがあるのかな。
最も単純なケースでは、その開発者によるすべてのコミット差分を表示するだけです。
git log -p --author='name of author' --full-history --all
git logの出力を時間範囲に制限するには、 --since/--afterおよび--until/--beforeオプションを指定します。
git log
--since
--after
--until
--before
git log -p --author='name of author' --since=... --until=... --full-history --all