From e6052e1f400ee229955ef2f02ecd5187bf531c86 Mon Sep 17 00:00:00 2001 From: mike Date: Mon, 5 Jan 2026 14:29:39 -0800 Subject: [PATCH] Update README --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 10036e8..2488061 100644 --- a/README.md +++ b/README.md @@ -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`. + + +