CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 10:49:41 GMT
server: Fly/6f91d33b9d (2025-10-08)
content-type: text/html; charset=utf-8
content-encoding: gzip
via: 2 fly.io, 2 fly.io
fly-request-id: 01K79E80C6VC6AMRC3NBGFE3KE-bom
Transferring a GitHub issue from a private to a public repository | Simon Willison’s TILs
Transferring a GitHub issue from a private to a public repository
I have my own private notes
repository where I sometimes create research threads. Occasionally I want to transfer these to a public repository to publish their contents.
You can't transfer an issue from a private repository to a public repository.
I found this workaround:
- Create a new private repository. I called mine
simonw/temp
- Transfer the issue from your original repository to this new temporary repository
- Use the "Settings" tab in the temporary repository to change the entire repository's visibility from private to public
- Transfer the issue from the temporary repository to the public repository that you want it to live in
Using the gh tool
You can perform transfers using the web interface, but I also learned how to do it using the gh
tool.
Install that with brew install gh
Then you can run this:
gh issue transfer https://github.com/simonw/temp/issues/1 simonw/datasette-tiddlywiki
I used this trick today to transfer https://github.com/simonw/datasette-tiddlywiki/issues/2 out of my private notes
repo.
Related
- github Migrating a GitHub wiki from one repository to another - 2022-07-28
- github Clone, edit and push files that live in a Gist - 2022-09-08
- github-actions GitHub Actions, Issues and Pages to build a daily planner - 2024-01-01
- github GitHub Pages: The Missing Manual - 2022-10-31
- git Rewriting a Git repo to remove secrets from the history - 2023-01-24
- clickhouse Reviewing your history of public GitHub repositories using ClickHouse - 2024-03-20
- github Reporting bugs in GitHub to GitHub - 2022-07-07
- github Setting up a custom subdomain for a GitHub Pages site - 2022-05-04
- git How to create a tarball of a git repository using "git archive" - 2022-11-15
- github Assistance with release notes using GitHub Issues - 2024-08-05
Created 2021-12-22T17:46:27-08:00 · Edit