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 に慣れていないので、問題があります。
SVN ではsvn log HEAD:100、HEAD リビジョンと 100 リビジョンの間のログ メッセージを取得するために使用できます。
svn log HEAD:100
特定の範囲のログメッセージを取得できるように、Git に似たようなものはありますか?
これを行う方法は複数あります。gitrevisions についてはマニュアルページ (7) をお読みください。
man 7 gitrevisions
上記の例では、次のコマンドを使用できます。
git log HEAD~100..HEAD
2 つのリビジョン間のすべてのコミットが必要な場合は、2 つのリビジョン間に 3 つのドットが必要です。
git log Rev1...Rev2