批处理文件中的Git命令通过VSTS运行抛出错误

问题描述 投票:1回答:1

我已将远程GitHub存储库克隆到我的Build Server中。 VSTS中的构建定义生成了一个文件作为构建工件。我通过VSTS中的powershell脚本任务将该文件复制到构建服务器中的本地github存储库中。我想运行Git命令将这个新的构建工件文件从本地github存储库推送到远程GitHub存储库。我在构建服务器上存储了带有Git命令的批处理文件。当构建在VSTS上运行时,我尝试通过“命令行脚本”VSTS任务调用驻留在构建服务器中的批处理文件。

命令行脚本:

cd "batch file path"
GitCommands.bat

现在我在批处理文件中不断收到与git命令相关的错误。以下是一个例子。

注意:我正在尝试使用批处理文件中的git命令将单个文件直接推送到github存储库。

2018-08-30T20:17:07.9089221Z On branch master
2018-08-30T20:17:07.9090417Z Your branch is up to date with 'origin/master'.
2018-08-30T20:17:07.9166091Z 
2018-08-30T20:17:07.9180427Z Untracked files:
2018-08-30T20:17:07.9205244Z   (use "git add <file>..." to include in what will be committed)
2018-08-30T20:17:07.9224271Z 
2018-08-30T20:17:07.9298112Z    filename.ipa
2018-08-30T20:17:07.9316134Z 
2018-08-30T20:17:07.9457726Z nothing added to commit but untracked files present (use "git add" to track)
2018-08-30T20:17:10.4572412Z fatal: Unable to write new index file
2018-08-30T20:17:10.4614209Z file added
2018-08-30T20:17:10.5106172Z On branch master
2018-08-30T20:17:10.5107096Z Your branch is up to date with 'origin/master'.
2018-08-30T20:17:10.5131465Z 
2018-08-30T20:17:10.5145982Z Untracked files:
2018-08-30T20:17:10.5184825Z    filename.ipa
2018-08-30T20:17:10.5204032Z 
2018-08-30T20:17:10.5280428Z nothing added to commit but untracked files present
2018-08-30T20:17:38.9087093Z Terminate batch job (Y/N)? 

批处理文件内容:

*cd to github loval repository

git status

git add .

echo file added

git commit -m "Adding ipa file to the repository through VSTS automated build"

git push origin master*
git batch-file github azure-devops
1个回答
0
投票

您可以使用PowerShell任务替换命令行任务。 PowerShell脚本应该是:

cd \path\to\local\github\repo
git status
git add .
echo "file added"
git commit -m "Adding ipa file to the repository through VSTS automated build"
git push https://username:[email protected]/username/reponame master

然后你应该提交并将新添加的文件成功推送到github repo。

注意:在将更改推送到github时,您需要提供凭据(用户名和密码)。

© www.soinside.com 2019 - 2024. All rights reserved.