Updated my computer
I updated my production machine to macOS Monteray.  I couldn't help it... I like shiny things.

As expected, there always seems to be something quirky that happens to at least one of my dev environments after updating. When I tried to pull from git, it told me git was missing. 😱

A quick google away I found a Stack Overflow post and I discovered that at least 2821 other people had the same issue. Apparently, because of the new permissions, you have to reinstall the Xcode Command Line Tools so that it picks up the new permissions. ¯\_(ツ)_/¯

To fix this run the following in Terminal.app.

xcode-select --install
xcode-select --reset
Once complete, restart your machine and you should be good to go.