Just a quick one based on today’s git ready: text-based graph. That describes how to get nice ascii-charts of your git repo. But the command is too long to type. So:
git config --global alias.tree 'log --graph --pretty=oneline'
Now, I can just do git tree. Lovely.
Now add
--decorateand then use--allas needed, and you’ll never again mourn the inability to rungitkon a repository you’re working on while SSHed into a server.Oooh, that’s lovely. Thanks!
Good idea. I added abbreviated IDs…