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 log」でいくつかのオプションを使用していますか?
ブランチにいると仮定するとmaster、現在チェックアウトされているリビジョンからブランチの先端までのコミットが表示されます。
master
git log ..master
現在チェックアウト中のリビジョンを含めるには:
git log HEAD^..master