当我们在 Azure DevOps 中使用 GitPython 并尝试推送到存储库时,会出现以下消息(与管道克隆的存储库相同):
stderr: 'git: 'credential-manager-core' is not a git command. See 'git --help'.
基础设施:GitHub、Windows 构建机(最新)
由于我们的工作目录是当前克隆的存储库,我们像这样初始化存储库:
import git
repo = git.Repo('.')
# Do some stuff
repo.git.execute('git add --all -- ":!build-infrastructure"')
repo.git.execute(f'git commit -m "{generic_commit_message}"')
repo.git.execute('git push')
因此,推送更改应使用与用于拉取的 Azure DevOps 相同的凭据。我错过了什么吗?
解决方案
解决方案是覆盖checkout
管道中的步骤:https ://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&tabs=schema%2Cparameter-schema#checkout
steps:
- checkout: self
submodules: true
persistCredentials: true