Update README

This commit is contained in:
mike
2026-01-05 14:29:39 -08:00
parent 52f39a5f9e
commit e6052e1f40

View File

@@ -1,3 +1,4 @@
# Mike's Gitea Repo Migrator
Just a script to help make it a little easier to migrate an entire organization (with bulk selection) from one Gitea instance to another.
@@ -43,9 +44,13 @@ $ python ./main.py --help
You'll need to generate an *Application Token* for both the source and destination servers, and pass the token along to the command line.
### SSL Verification
### SSL/TLS Verification
Pass the long switch `--no-verify-ssl` if any server sits behind a self-signed or wonky SSL certificate.
You can disable SSL/TLS verification (risky) in the following ways:
* Pass the long switch `--no-verify-ssl` to completely disable SSL/TLS verification.
* Pass the switch `--no-verify-source-ssl` to disable certificate verification for the source server.
* Pass the switch `--no-verify-destination-ssl` to disable certificate verification for the destination server.
### Destination Repo Names
@@ -55,3 +60,6 @@ You can tweak the destination repo names a bit by using a string that includes `
Topics will be duplicated from all source repos to their corresponding destination repos. You can specify additional topics with the `--destination-topic` switch. For example, to add the topic `migrated` to every repo, pass the switch `--destination-topic migrated`.