有两份工作:父母工作和子女工作。
分支名称的环境变量在批处理脚本中的父作业中配置:setx BRANCH_NAME development
。我尝试在子作业(${BRANCH_NAME}
)中使用它配置git Branch Specifier,但是在控制台中出现错误
git rev-parse refs/remotes/origin/${BRANCH_NAME}^{commit} # timeout=10
git rev-parse refs/remotes/origin/origin/${BRANCH_NAME}^{commit} # timeout=10
git rev-parse origin/${BRANCH_NAME}^{commit} # timeout=10
ERROR: Couldn't find any revision to build.
我100%肯定git很好,分支存在。