-
-
Save KyMidd/dd3e22c2667d0d3c461787dde7d94a6d to your computer and use it in GitHub Desktop.
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
| # Iterate over all repos, make changes | |
| while IFS=$'\n' read -r gh_repo; do | |
| # Clone the repo, will fail if the repo folder already exists | |
| git clone git@github.com:$gh_org/${gh_repo}.git | |
| # Change directories into the repo | |
| cd $gh_repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment