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
即可,具体配置如下:
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
即可,具体配置如下: