For those that want to make the provided command into an alias in your bashrc file, here is one way that worked for me. alias yourAlias='find . -maxdepth 1 -mindepth 1 -type d -exec sh -c "echo {}; cd {}; git status -s; echo" \;'
For those that want to make the provided command into an alias in your bashrc file, here is one way that worked for me.
alias yourAlias='find . -maxdepth 1 -mindepth 1 -type d -exec sh -c "echo {}; cd {}; git status -s; echo" \;'