我试图在Azure DevOps中导入我的gitlab存储库,但我收到下面的错误。虽然URL和授权都是正确的,但你能建议在Azure DevOps中导入git存储库的替代方案吗?
Import request cannot be processed due to one of the following reasons: Clone URL is incorrect Clone URL requires authorization
联系管理员并尝试使用管理员权限,仍然无法连接到git存储库。
6l7fqoea1#
另一种办法是:
git remote add repo ../path/to/gitlab/local/clone
git fetch
git push --mirror
这将处理存储库本身(您也可以添加导入标记的选项)如果您可以克隆自己的Azure DevOps * 私有 * 存储库,那么身份验证肯定不会成为问题。
1条答案
按热度按时间6l7fqoea1#
另一种办法是:
git remote add repo ../path/to/gitlab/local/clone
+git fetch
+ create a local branch for every remote tracking branches)git push --mirror
)这将处理存储库本身(您也可以添加导入标记的选项)
如果您可以克隆自己的Azure DevOps * 私有 * 存储库,那么身份验证肯定不会成为问题。