设置用户名和邮箱
git config --global user.name “123”
git config --global user.email “123@qq.com”
查看git配置
git config --list
本地搭建仓库
git init
克隆仓库
git clone [ssh的url]
查看状态
git status
添加文件到暂存区
git add [文件名]
git add. 所有文件
从暂存区提交到本地仓库
git commit -m “消息内容”
将本地仓库的东西提交到远程仓库
git push
查看分支
git branch
创建分支
git branch [name]
删除分支
git branch -d [name]
切换分支
git checkout [name]
创建分支并切换
git checkout -b [name]
等价
git branch [name] && git checkout [name]
合并分支
git merge [name]