how to know git version in Azure Devops

Riham Sam 1 Reputation point
2023-01-24T14:44:49.2966667+00:00

hi i want to know my git version in Azure devops

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
42,076 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2023-01-24T15:24:32.9333333+00:00

    Devops / TFS is not currently supported here on Q&A. The product group for Azure DevOps / TFS actively monitors questions over at
    https://developercommunity.visualstudio.com/report?space=21&entry=problem
    https://developercommunity.visualstudio.com/report?space=22&entry=problem
    https://azure.microsoft.com/en-in/support/devops/
    --please don't forget to upvote and Accept as answer if the reply is helpful--

    0 comments No comments

  2. Michael Taylor 56,951 Reputation points
    2023-01-24T15:30:30.6366667+00:00

    It sounds like you want to know what version of Git is installed on the build machine. If you're using self hosted then that is your problem as you're responsible for the server. If you're using a hosted build agent then it depends on the build image you have configured for your build. You can get the current, official list here.

    For example if you're using windows-latest then currently that maps to windows-2022 and as of 24 Jan 2023 it is Git version 2.39.1.windows.1. Note that tooling versions can change over time and that is partially why you should be using windows-latest if you need a Windows build. If you need a specific version of Git then your build pipeline should install the specific version of Git you need instead. This also applies to any other tools you require such as nodejs, npm, etc.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.