I spent some time creating a git log format that is concise but informative.

Curious if others have something similar.

alias gitlog="git log --graph --all --pretty='format:%C(auto)%h %C(cyan)%ar %C(auto)%d %C(magenta)%an %C(auto)%s'"

@goinggodotnet I started using your gitlog alias today and it's amazing! Thank you for sharing. 🤩

@cctechwiz Checkout this new version. It's a little nicer with the time.

alias gitlog="git log --graph --pretty=format:'%Cred%h%Creset - %Cblue%an%Creset %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"

@goinggodotnet oh that is even better looking. I like that you omitted --all so you can append it after gitlog if you want or not.
@cctechwiz someone shared this with me on Twitter after seeing what I was doing. This is better for sure.