How can I view all the git repositories on my machine?
git
Solution
If you are in Linux `find / -name ".git"`, otherwise there is no way, they are standard directories, just use your OS file/folder find program to find `.git` named folders.
Problem
Is there a way in which I can see all the git repositories that exist on my machine? Any command for that?