0

我在 groovy 中使用共享库。我有这个变量将返回:feature/nameofthebranch

def BRANCH = steps.sh(returnStdout: true, script: 'git rev-parse --abbrev-ref HEAD').trim()

但是,我只需要“/”之后的字符,我尝试过拆分和其他东西,但没有按我的意愿工作,可能是因为我在 groovy 方面很笨拙。

预期结果应该是从feature/nameofthebranch"nameofthebranch"

4

1 回答 1

0

你可以这样做

def BRANCH = steps.sh(returnStdout: true, script: 'git rev-parse --abbrev-ref HEAD').trim()

echo "${BRANCH.split('/')[1]}"
于 2021-02-07T21:34:16.323 回答