Created
August 17, 2022 15:04
-
-
Save fredguth/3d8b0c2beacd28e3c02ec41b54049fa7 to your computer and use it in GitHub Desktop.
Transfer issues between repos in Github
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
gh issue transfer <issue ID> <destination repo> | |
So a few shell pipes later and we have this: | |
gh issue list -s all -L 500 --json number | \ | |
jq -r '.[] | .number' | \ | |
xargs -I% gh issue transfer % https://github.com/<destination repo> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gh issue list -s all -L 500 --json number |
jq -r '.[] | .number' |
xargs -I% gh issue transfer % https://github.com/