I’ve been using Git since 2008-ish. I keep all the coding projects I work on in a directory called `code`.
Out of curiosity I wondered how many Git repositories I have in my pile of projects.
`find . -type d -name “.git" | wc -l`
343
Recently I've started playing around with Jujutsu (jj).
`find . -type d =name “.jj” | wc -l
11
I wonder what those numbers will be in another 17 years.