-3

I just clone git to itself still the version of my git is still the same?
Running git --version still displays the old version. I cloned for too long, and I can git is till the same?

Note: my environment is Windows.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
meetmahpuppy
  • 418
  • 1
  • 4
  • 17

1 Answers1

4

git clone https://github.com/git/git would only clone git source.
You still need to compile and install it in order to see any change.
You can see the process describe in the INSTALL file.
Those are Unix sources.


If you want to upgrade on Windows, then you need msysgit, which is the Windows development environment for git, needed for building "Git for Windows").
See the "contribute" section: you can install that building environment with msysGit-netinstall-1.9.4-preview20140929.exe.

The msysgit mailing list can help too.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250