gpt4 book ai didi

git - 如何将 Git 添加到 MSBuild 脚本?

转载 作者:行者123 更新时间:2023-12-04 22:27:28 25 4
gpt4 key购买 nike

我正在尝试将 Git checkin 添加到我的 MSBuild 脚本中。我想:

  1. 通过消息提交文件
  2. 推送提交
  3. 标记构建
  4. 推送标签

构建脚本位于 ./Build/(其中 . 是解决方案文件夹)。

我正在使用:

<Target Name="Committed" DependsOnTargets="SignedInstaller">
<Exec Command="&quot;$(GitInstallationFolderPath)cmd\git.exe&quot; --git-dir=..\.git --work-tree=.. commit -m &quot;$(Changes)&quot;"/>
<Exec Command="&quot;$(GitInstallationFolderPath)cmd\git.exe&quot; --git-dir=..\.git --work-tree=.. push"/>
<Exec Command="&quot;$(GitInstallationFolderPath)cmd\git.exe&quot; --git-dir=..\.git --work-tree=.. tag -a v$(VersionNumber) -m &quot;$(Changes)&quot;"/>
<Exec Command="&quot;$(GitInstallationFolderPath)cmd\git.exe&quot; --git-dir=..\.git --work-tree=.. push -- tags"/>
</Target>

自定义属性都OK。

第一个提交以 1 退出并中断构建。

我不确定我是否只需要对此进行调整,或者我是否做错了,所以欢迎提供建议。我也需要做一些事情来将任何新文件添加到 Git - 只是还没到那一步。我确实想坚持使用 MSBuild,尽管我们现在有很多脚本。我只想删除我的 SVN 目标并移动到 Git。

最佳答案

与 MSBuild Extensions 中 GitTasks 的有限功能不同,Community Tasks 中似乎有更多通用的东西.

GitBranch   A task to get the name of the branch or tag of git repository
GitClient A task for Git commands.
GitCommits A task for git to retrieve the number of commits on a revision.
GitDescribe A task for git to get the most current tag, commit count since tag, and commit hash.
GitPendingChanges A task for git to detect if there are pending changes
GitVersion A task for git to get the current commit hash.

关于git - 如何将 Git 添加到 MSBuild 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21209644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com