Created
August 1, 2021 21:07
-
-
Save EtherTyper/fc231d1e64aff0b296560de9d1653d62 to your computer and use it in GitHub Desktop.
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
for i in *; do if [ -d "$i/.git" ]; then echo "$i"; if [ -d "$i/.git/svn" ]; then GIT_DIR="$i/.git" git-svn info; else git -C "$i" remote get-url origin; fi; fi; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment