Created
June 16, 2015 06:29
-
-
Save tkuchiki/32b07c8de94597c456df to your computer and use it in GitHub Desktop.
指定ディレクトリ以下の git の remote url 一覧を出力
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
find ./ -name '.git' -type d -print0 | xargs -0 -I % git -C % config --get remote.origin.url | xargs -I % echo git clone % |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment