当我尝试使用Bitbucket Server Java API通过两种不同的方式将更改推送到远程存储库时,出现进程超时
使用以下代码,
gitCommandBuilderFactory.builder(sourceRepo)
.push()
.refspec("refs/head/*")
.refspec("refs/tags/*")
.force(true)
.repository("http://myehia@localhost:7990/scm/test/test.git")
.build(new StringCommandOutputHandler()).call()
OR
gitCommandBuilderFactory.builder()
.workingDirectory(webDirLocation)
.command("push")
.argument("--force")
.build(new StringCommandOutputHandler())
.call()
我还增加了进程超时,但是没有成功。
我缺少什么?