1

我是 Teamcity 的新手,我已经为teamcity (8.1.5)上的一个 Maven 项目配置了发布版本,其中vcs root 设置为GIT

对于 VCS root,我已经配置了 git repo url 并在结帐期间使用密码身份验证。它成功签出 Git repo,但无法执行 mvn release:prepare 并抛出错误

The git-push command failed.
fatal: could not read Username for 'https://github.com': No such device or address

我知道这个错误意味着没有在 teamcity 上配置适当的凭据帮助程序,但是为什么 teamcity 默认不选择在 auth 部分配置的用户名/密码。

即使我尝试使用 mvn 参数传递凭据,并且 pom 具有以下 scm 设置

<scm>
    <connection>scm:git:https://github.com/abc/sp.git</connection>
    <developerConnection>scm:git:https://github.com/abc/sp.git</developerConnection>
    <url>scm:git:https://github.com/abc/sp.git</url> </scm>

vcs root 身份验证设置 行家配置

我应该如何使它适用于 git push ?我在 TC 文档中找不到这个。

4

1 回答 1

1

除了上述所有设置外,我还必须更新我的 pom 以添加最新版本的 maven 发布插件,它运行良好

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-release-plugin</artifactId>
    <version>2.5.3</version>                
</plugin>
于 2018-05-22T18:23:45.983 回答