This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run git status on every git repository under the given directory. | |
# (see also: https://gist.github.com/mzabriskie/6631607) | |
# | |
# USAGE: bash git_status_recursive.sh <DIRECTORY_PATH> | |
# | |
# EXAMPLE1: bash git_status_recursive.sh /home/thorgeir | |
# EXAMPLE2: bash git_status_recursive.sh . | |
# | |
# DATE: Wed Jun 10 18:15:35 UTC 2020 |