标签:
上传本地代码库到GitHub:
git push
在 git 全局设置中配置个人信息:
配置用户名:
配置邮箱:
git config --global user.email = "email@example.com”
进入vi编辑模式查看git全局配置:
git config —global -e
列表模式查看git全局配置:
git config —global -l
标签:
原文地址:http://www.cnblogs.com/actionke/p/4351960.html