git配置用户名

1 . 用户名和邮箱的作用
    用户名和邮箱地址是本地git客户端的一个变量 . 用户每次提交代码都会记录用户名和邮箱 . 

2 . 设置
2.1 设置用户名
git config --global user.name "username"
2.2 设置邮箱 (没有双引号)
git config --global user.email [email protected] 
3 . 查看用户名和密码
git config user.name
git config user.email
4 . 查看其他配置信息(git设置列表)
git config --list   

https://blog.csdn.net/xingbaozhen1210/article/details/80342212

git branch 查看当前分支

git status 查看当前分支文件状态

git add .   将新增的,修改的文件都加入暂存区

git status 再次查看状态

git commit -m "完成了开发"     完成本地的提交

git push -u origin home  将本地的 home 分支推送到远程仓库进行保存

git checkout master

git merge home  将本地的 home 分支合并到本地的 master 分支

git branch -d home 删除home分支

你可能感兴趣的:(git)