赞
踩
Git Bash 下载
官网:https://git-scm.com/downloads
1.下载好之后从Win界面打开Git Bash
2.之后开始配置用户名和邮箱
//配置用户名
$ git config --global user.name "用户名"
//配置用户邮箱---本人用的是网易@163.com
$ git config --global user.email "邮箱地址"
//查看是否配置正确
$ git config --list
//出现user.name=用户名 user.email=邮箱,即配置完成。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。