Last active
December 22, 2015 00:19
-
-
Save kostasdizas/6388220 to your computer and use it in GitHub Desktop.
find all git repositories under /Users/ and import them to SourceTree
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 folder in $(sudo find /Users -name ".git" -type d | sed 's#\(.*\)/.*#\1#' | sort -u); do | |
stree $folder; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment