Finished the Learn Git course on Boot.Dev. That’s Part One. I’ve updated my global git config to keep a linear history:

git config --global pull.rebase true

Perhaps my favorite learning is displaying a tight log with:

git log --oneline

When I want to see a fancy ASCII art representation, I type this:

git log --oneline --graph --all