当运行go程序时提示如下报错:
go
$ go run main.go error obtaining VCS status: exit status 128 Use -buildvcs=false to disable VCS stamping.
解决方案如下:
删除.git文件夹,此方法比较粗暴,不推荐。
.git
执行如下命令:
$ git config --global --add safe.directory [your dir here]