We can prefix the Git Alias with ! to make it a shell command instead of sub-command to git. git config --global alias.statuses \ '!for repo in $(find * -type d -maxdepth 0); do echo "\n=========$repo==========\n" && git -C $repo status; done' Now g...
arunvelsriram.dev1 min readNo responses yet.