【发布时间】:2023-01-27 18:17:49
【问题描述】:
如何将 git 版本更新到最新的 Azure Web 应用程序或 Kudu 版本?
【问题讨论】:
-
如果我没有正确理解你的问题:在你的 Web 应用程序上运行的 Git 版本由 Azure 管理。
标签: git azure azure-web-app-service kudu
如何将 git 版本更新到最新的 Azure Web 应用程序或 Kudu 版本?
【问题讨论】:
标签: git azure azure-web-app-service kudu
检查当前的 git 版本:
git --version
要更新 git 版本,请在 Azure web app -> Development tools -> console 中使用以下命令。
git update-git-for-windows -y
它将下载到最新版本。
【讨论】: