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.
を呼び出すことで の順序をhg log逆にできることを知っていhg log -r:ます。次に、最も古いコミットが一番上になり、最新のアイテムが一番下になります。
hg log
hg log -r:
グラフログ拡張機能からhg glog(またはhg log -G)同様のことが可能ですか?
hg glog
hg log -G
いいえ、元に戻すことはできませんが、--revオプションを使用して特定の範囲に制限することはできます。
--rev
hg glog --rev 0:1
と
hg glog --rev 1:0
どちらもリビジョン 0 の上にリビジョン 1 を示していますが、少なくとも出力の末尾が表示されています。