赞
踩
git—全局设置用户名、密码、邮箱
$ git config --list
$ git config user.name
$ git config user.password
$ git config user.email
$ git config user.name "freedom"
$ git config user.password "123456"
$ git config user.email "123456789@qq.com"
$ git config --global user.name 用户名
$ git config --global user.name freedom
$ git config --global user.password 密码
$ git config --global user.password abc0506abc
$ git config --global user.email 邮箱
$ git config --global user.email "123456789@qq.com"
$ git config user.name "freedom"
$ git config --global user.name "freedom"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。