DEV Community

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

Collapse
 
hawkinjs profile image
Josh Hawkins

This is a good idea - I may write a little node script to use this tool and do just this! :)

Collapse
 
bahmutov profile image
Gleb Bahmutov

Hit me up then, it would be great OSS or side project,

Thread Thread
 
enguerran profile image
enguerran 🐐💨
Thread Thread
 
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