美文网首页
VSTS 执行git pull报错问题修复

VSTS 执行git pull报错问题修复

作者: 圣杰 | 来源:发表于2018-05-04 22:00 被阅读44次

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

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


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

    git config --global user.email "you@example.com"
    git config --global user.name "Your Name"
    

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

    image.png

    相关文章

      网友评论

          本文标题:VSTS 执行git pull报错问题修复

          本文链接:https://www.haomeiwen.com/subject/srujrftx.html