On Sun, Mar 24, 2019 at 11:10 PM Alex Henrie <alexhenrie24@xxxxxxxxx> wrote: > > I like the idea of a completely separate `git graph` command. This > command would simply be a builtin alias for `git log --abbrev-commit > --pretty=oneline`, like how `git reflog` is a builtin alias for `git > log -g --abbrev-commit --pretty=oneline`. Junio, would you be on board > with that? Sorry, I left off the --graph parameter. You can set up what I'm proposing as a personal alias with the following command: git config --global alias.graph 'log --graph --abbrev-commit --pretty=oneline' -Alex