DEV Community

Discussion on: Git standup, how did I ever live without you?

 
zoidbergwill profile image
William

That didn't work for me, so instead I did the following to list all my git repos in ~/src

find . -depth -5 -type d -name ".git" | sed -e "s/\(\.\/\)\(.*\)\(\.git\)/~\/src\/\2/g" | tr '\n' ','
Enter fullscreen mode Exit fullscreen mode