There are 2 more useful git clients under windows:
1. Msysgit + tortoisegit (turtle git)
2. GitHub for Windows
GitHub's Windows version has been used for some time, but it's still not used to it. So at present still favor with the msysgit+ turtle git combination. Tortoisegit The total number of submissions will prompt you to enter the username password, very troublesome. The solution is as follows:
Method One:
Set-> git edit Local. Git/config add
[Credential]
Helper = Store
Method Two:
1. Add a home environment variable in Windows with a value of%userprofile%
2. Open%home% in Start > Run to create a new file named "_netrc"
3. Open the _netrc file with Notepad, enter git server name, username, password, and save:
Machine github.com #git服务器名称
Login User #git帐号
Password pwd #git密码
Build _NETRC on Windows
Copy con _netrc #创建_netrc文件
#依次输入以下3行:
Machine github.com #git服务器名称
Login Username #git帐号
Password Password #git密码
Enter Ctrl+z after the last line and the file will automatically save and exit
Do not have to repeat the username password when submitting on Git again