Msysgit is the Windows version of Git, download from Https://git-for-windows.github.io (slow students please go to the domestic mirror), and then press the default option to install.
After the installation is complete, find Git Bash in the Start menu and pop out a command-line window that shows that the GIT installation was successful!
After the installation is complete, you will need the final step, and at the command line, enter:
" Your Name " "[email protected]"
Note the parameters of the command, which is git config global used to indicate that all of your git repositories on this machine will use this configuration, and you can also specify a different user name and email address for a particular repository.
To view the git version command:
$ git--version
To view the git all configuration Items command:
$ git config-l
Getting Started with git under Windows http://blog.csdn.net/renfufei/article/details/41647773
Git installation Tutorials