我在 groovy 中使用共享库。我有这个变量将返回:feature/nameofthebranch
def BRANCH = steps.sh(returnStdout: true, script: 'git rev-parse --abbrev-ref HEAD').trim()
但是,我只需要“/”之后的字符,我尝试过拆分和其他东西,但没有按我的意愿工作,可能是因为我在 groovy 方面很笨拙。
预期结果应该是从feature/nameofthebranch到"nameofthebranch"