Ios Apple开发者帐户-从代理中删除团队ID

Ios Apple开发者帐户-从代理中删除团队ID,ios,app-store-connect,fastlane,apple-developer,fastlane-match,Ios,App Store Connect,Fastlane,Apple Developer,Fastlane Match,我是一家企业客户的团队代理,但在加入Fastlane match的新团队后,我有权在我所代理的团队和新邀请的团队之间进行选择 [14:03:47]: Fetching certificates and profiles... Multiple teams found on the Developer Portal, please enter the number of the team you want to use: 1) xxxxx "some.org" (Company/Organiza

我是一家企业客户的团队代理,但在加入Fastlane match的新团队后,我有权在我所代理的团队和新邀请的团队之间进行选择

[14:03:47]: Fetching certificates and profiles...
Multiple teams found on the Developer Portal, please enter the number of the team you want to use: 
1) xxxxx "some.org" (Company/Organization)
2) yyyyy "some.org" (In-House)
如何删除以前的代理帐户YYYY,使此选项不显示


当尝试退出developer.apple.com中的成员资格选项时,我不能作为代理退出,但可以选择“转移团队代理角色”。我不想转移,只是删除它。

您需要有人将您从其中一个帐户中删除,或者您可以指定一个环境变量或命令行参数,这样您就不会收到提示。看起来您在这里使用的是
match
,所以

使用CLI:
match--team_id xxx
match--team_name“some.org”

使用环境变量:
FASTLANE\u TEAM\u ID=xxx match
或者您可以在系统中设置此环境变量

如果您正在使用快速文件并调用
match
操作,您可以执行
match(team\u id:“xxx”)
match(team\u name:“some.org”)


您可以通过执行
快速车道匹配--help
,执行
快速车道操作匹配
,或者通过在此处查看文档来查看文档-

谢谢,我在匹配中添加了team id参数以避免出现提示。