Why is it that if you download Git 2.0 from the net, you always get a 1.9.4 installer package?

前端 未结 2 1379
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 09:23

Why is it that if you download Git 2.0 from the net, you always get a 1.9.4 installer package? Why can\'t you just find a Git installer package on the internet anywhere tha

2条回答
  •  死守一世寂寞
    2020-11-22 09:59

    There is a new project called "Git For Windows": https://git-for-windows.github.io/

    As I explained, it will replace msysgit, with the phasing out of msysgit (Q4 2015) and the new Git For Windows (Q2 2015).

    It has a much more recent bash, based on the 64bits msys2 project, an independent rewrite of MSYS, based on modern Cygwin (POSIX compatibility layer) and MinGW-w64, with the aim of better interoperability with native Windows software.
    msys2 comes with its own installer too.

    The git bash is now (with the new Git For Windows 2.6.x):

    GNU bash, version 4.3.42(2)-release (x86_64-pc-msys)
    Copyright (C) 2013 Free Software Foundation, Inc.
    

    (as opposed to the old 32-bits msys bash from Git for Windows 1.9.5:
    GNU bash, version 3.1.20(4)-release (i686-pc-msys) 2005).

    This 4.3 bash comes with the latest patches.

    You can install the SDK in order to build a git 2.x.
    (The SDK will bring the right git sources)

    Update 2015: you now can test on Windows the latest Git releases (2.6.2+ at the moment): https://github.com/git-for-windows/git/releases/.

提交回复
热议问题