VSTS 执行git pull报错问题修复

VSTS中进行双向同步配置的git pull指令如下:

VSTS 执行git pull报错问题修复_第1张图片

运行时报错,Log如下图所示:


VSTS 执行git pull报错问题修复_第2张图片

原因说的很清楚了,需要提前执行以下两条git config指令:

git config --global user.email "[email protected]"
git config --global user.name "Your Name"

因此我们在执行git pull之前添加一个Command Line指令去执行git config即可,具体配置如下:

VSTS 执行git pull报错问题修复_第3张图片
image.png

你可能感兴趣的:(VSTS 执行git pull报错问题修复)