标签:邮箱 git 远程仓库 客户 mail -- 用户 clone remote
1.拉去远程git仓库的代码
git clone [远程仓库地址]
2.配置个人的git客户端
最好设置和github上的账号和邮箱一样
配置用户名:git config --global user.name "zhangguangju"
配置邮箱:git config --global user.email "595155100@qq.com"
查看用户名:git config --global user.name
查看邮箱:git config --global user.email
查看所有的客服端配置:git config --list
1.查看你当前项目的远程git地址
git remote -v
标签:邮箱 git 远程仓库 客户 mail -- 用户 clone remote
原文地址:http://www.cnblogs.com/zhangguangju/p/7691764.html