Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Created June 16, 2015 06:29
Show Gist options
  • Save tkuchiki/32b07c8de94597c456df to your computer and use it in GitHub Desktop.
Save tkuchiki/32b07c8de94597c456df to your computer and use it in GitHub Desktop.
指定ディレクトリ以下の git の remote url 一覧を出力
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