尽管凭据正确,Jenkins 在复制回购协议时失败
Jenkins fails while copying the repo despite correct credentials
不幸的是,我的构建每次都失败了。
复制过程显然总是应该失败。
但是 Jenkins 上的这个用户可以 100% 访问 repo。
我可以 100% 排除这个错误。
有人知道是什么原因造成的吗?
using GIT_ASKPASS to set credentials for Bitbucket Notifier plugin and Nexus service
> git.exe fetch --tags --progress -- https://URL/bitbucket/test.git +refs/heads/*:refs/remotes/origin/* # timeout=10
ERROR: Timeout after 10 minutes
ERROR: Error fetching remote repo 'origin'
....
stderr: Logon failed, use ctrl+c to cancel basic credential prompt.
remote: Counting objects: 1
remote: Counting objects: 4198, done.
remote: Compressing objects: 0% (1/2939)
...
remote: Compressing objects: 99% (2935/2939)
...
Finished: FAILURE
谢谢。
问题在这里:
ERROR: Timeout after 10 minutes
ERROR: Error fetching remote repo 'origin'
您需要做的是,在您放置 Bitbucket Repo 详细信息的位置更新您的 SCM 配置。 "timeout"会有一个设置,如果我没记错的话默认设置为10。
您可以将其保留为空白,这样就不会发生超时。
不幸的是,我的构建每次都失败了。
复制过程显然总是应该失败。 但是 Jenkins 上的这个用户可以 100% 访问 repo。 我可以 100% 排除这个错误。
有人知道是什么原因造成的吗?
using GIT_ASKPASS to set credentials for Bitbucket Notifier plugin and Nexus service
> git.exe fetch --tags --progress -- https://URL/bitbucket/test.git +refs/heads/*:refs/remotes/origin/* # timeout=10
ERROR: Timeout after 10 minutes
ERROR: Error fetching remote repo 'origin'
....
stderr: Logon failed, use ctrl+c to cancel basic credential prompt.
remote: Counting objects: 1
remote: Counting objects: 4198, done.
remote: Compressing objects: 0% (1/2939)
...
remote: Compressing objects: 99% (2935/2939)
...
Finished: FAILURE
谢谢。
问题在这里:
ERROR: Timeout after 10 minutes
ERROR: Error fetching remote repo 'origin'
您需要做的是,在您放置 Bitbucket Repo 详细信息的位置更新您的 SCM 配置。 "timeout"会有一个设置,如果我没记错的话默认设置为10。
您可以将其保留为空白,这样就不会发生超时。