git 在通过 powershell 构建的 vsts 中提交不起作用

git commit in vsts build through powershell does not work

我正在尝试在 ci 构建 vsts 期间推送测试文件。但是,commit 命令似乎不起作用。

正如@tehhowch 在问题下方评论的那样。没有为本地 git 配置配置的 username/name 是不可能提交的。

可以按照报错信息=)解决,方法是:

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