Use these scripts to create pull requests and propose changes to multiple GitHub repositories. This is useful when making similar changes across multiple GitHub repositories.
- Git
- GitHub CLI - You must authenticate from the command line before using.
-
Customize the global-step1.sh script with the path to your GitHub repositories. For example:
git clone git@github.com:joel-hamill/bulk-change-tool.git
-
From your terminal, run the script to clone the repos.
./global-step1.sh
-
Make changes to multiple GitHub repositories. For example, to search for "thethe" and replace with "the:
find . -name '*.rst' -print0 | xargs -0 sed -i "" "s/thethe/the/g"
-
Customize the global-step2.sh script with your information and commit and push your change to GitHub. For example:
cd bulk-change-tool && git add filename && git checkout -b branchname \ && git commit -m "commit message" && \ git push origin HEAD && gh pr create --title "commit message" --fill