Created
April 18, 2015 13:15
-
-
Save ype/f906c225902ebf7fa223 to your computer and use it in GitHub Desktop.
generates a list of all the repos in a given directory
This file contains hidden or 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 ~/git_repos/*; do cd "$i"; git remote -v >> ~/git_repos/repo_list.txt; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment