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を使い始めたばかりで、assemblaでリポジトリをホストしています。.logファイルで行ったコミットを追跡したいと思います。誰かがこれを行うための正しい方向に私を向けることができますか?私はしばらくグーグルをしてきましたが、私を始めることができるものは何も見つかりませんでした。
ありがとう!
git log を使用して、それをファイルにリダイレクトするだけです。
git log --pretty=format:'%h : %s' --graph > commit_log.log
これにより、コミットのグラフで要約が得られます。