Gregg's MOTD

Tips & Tricks that I've Encountered Over the Years...

git Tips

April 15, 2023 — Gregg Szumowski

A useful tip to beautify your output is to use: $ git log --graph --decorate --oneline --abbrev-commit --all --date=local when looking at your log entries. Or you can add [alias] lola = log --graph --decorate --pretty=oneline --abbrev-commit --all --date=local to your ~/.gitconfig file to use $ git lola as an alias.

Tags: git, motd