これにエイリアスされたgit logがあります:
git log --reverse --oneline --pretty=format:'-%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
ただし、上部にスクロールする必要があるのは不便な場合があるため、逆にすることも必要です。
すでに持っているコマンドから--reverse
取り出します。
git log --oneline --pretty=format:'-%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
多分あなたは何らかの理由でそれをもっと何度も逆にしたいので、
your_command | perl -e 'reverse <>'
助けられる ;)
または
your_command | tail -r
または@evnuが示唆するように
your_command | tac
または、各行を逆にしたい場合は、次のことができます
your_command | perl -nlE 'chomp;say scalar reverse'
特に最後は良いです。例えば:
date | perl -nlE 'chomp;say scalar reverse'
版画
3102 TSEC 32:95:91 41 yaM euT
ps: 冗談です.. :)