Unable to find option to update git in Azure Web App?

98 Views Asked by At

How to update git version to latest in Azure Web app or Kudu build?

1

There are 1 best solutions below

1
Jahnavi On

Check the current git version:

git --version

To update git version, use below command in Azure web app -> Development tools -> console.

git update-git-for-windows -y

It will download to the latest version.

enter image description here