## git for windows 官网:[https://git-scm.com](https://git-scm.com) ## Windows下Git记住用户名和密码 打开Git Bush,键入如下命令: ```bash git config credential.helper store ``` 然后,在下次输入用户名和密码后,将会被记住。 ## git status时显示乱码 git status显示类似下面的乱码: ```bash "wiki/\345\255\230\345\202\250/\345\210\206\345\ ``` 解决方法: ```bash git config --global core.quotepath false ```