You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix `gh bbs2gh grant-migrator-role` so it doesn't throw `System.InvalidOperationException`
2
2
- Rename `AWS_ACCESS_KEY` and `AWS_SECRET_KEY` environment variables to `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` respectively to align with the environment variables that the AWS CLI already uses. Old environment variables are still supported but they will be removed in future.
3
3
- Send a `User-Agent` header with the current CLI version when downloading migration archives from GitHub Enterprise Server
4
-
- Add support for migration archives larger than 2GB when using the blob storage flow
4
+
- Add support for migration archives larger than 2GB when using the blob storage flow
5
+
- Add `--no-ssh-verify` option to `gh bbs2gh generate-script` and `gh bbs2gh migrate-repo` commands to support migrating from a Bitbucket Server or Bitbucket Data Center instance that uses a self-signed SSL certificate
Copy file name to clipboardExpand all lines: src/bbs2gh/Commands/GenerateScriptCommand.cs
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ public GenerateScriptCommand() : base(
31
31
AddOption(AwsBucketName);
32
32
AddOption(AwsRegion);
33
33
AddOption(KeepArchive);
34
+
AddOption(NoSslVerify);
34
35
}
35
36
36
37
publicOption<string>BbsServerUrl{get;}=new(
@@ -108,6 +109,11 @@ public GenerateScriptCommand() : base(
108
109
name:"--keep-archive",
109
110
description:"Keeps the downloaded export archive after successfully uploading it. By default, it will be automatically deleted.");
110
111
112
+
publicOption<bool>NoSslVerify{get;}=new(
113
+
name:"--no-ssl-verify",
114
+
description:"Disables SSL verification when communicating with your Bitbucket Server/Data Center instance. All other migration steps will continue to verify SSL. "+
115
+
"If your Bitbucket instance has a self-signed SSL certificate then setting this flag will allow the migration archive to be exported.");
0 commit comments