Vivek Shah
Vivek Shah

Reputation: 17

Git 2.13 not working on Windows XP

I downloaded Git-2.13.0.32-bit setup.On executing,it shows an error Windows Vista or later needed.I have WIndows XP.What shall I do?Which alternative software shall I download?

enter image description here

Upvotes: 2

Views: 3453

Answers (2)

VonC
VonC

Reputation: 1328252

With Git 2.20 (Q4 2018, 18 months later), the documentation now clearly states:

The minimum version of Windows supported by Windows port for Git is now set to Vista.

See commit 2939a1f, commit 3571e78, commit d7e357f (03 Oct 2018) by Johannes Schindelin (dscho).
(Merged by Junio C Hamano -- gitster -- in commit 29cce95, 16 Oct 2018)

mingw: bump the minimum Windows version to Vista

Quite some time ago, a last plea to the XP users out there who want to see Windows XP support in Git for Windows, asking them to get engaged and help, vanished into the depths of the universe.

We tried for a long time to play nice with the last remaining XP users who somehow manage to build Git from source, but a recent update of mingw-w64 (7.0.0.5233.e0c09544 -> 7.0.0.5245.edf66197) finally dropped the last sign of XP support, and Git for Windows' SDK is no longer able to build core Git's master branch as a consequence. (Git for Windows' master branch already bumped the minimum Windows version to Vista a while ago, so it is fine.)

It is time to require Windows Vista or later to build Git from source.
This, incidentally, lets us use quite a few nice new APIs.

Upvotes: 0

Lasse V. Karlsen
Lasse V. Karlsen

Reputation: 391594

According to this page: Git for Windows Prerequisites, the last version of Git that supported Windows XP was 2.10.0.

You can download it from GitHub.

Upvotes: 3

Related Questions