且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

有没有办法在终端中列出git存储库?

更新时间:2022-05-07 22:40:46

在你的系统上,你可以在bash shell终端(在命令行)运行以下命令并找到它们。

To list all the git repositories you have on your system you can run the following command in a bash shell terminal (at the command line) and find them.

find / -name .git -type d -exec dirname {} \;