$ git add . 添加所有文件 注意有个 .
$ git commit -m '注释' 提交本地
$ git push origin master提交给默认分支
$ git -rm 删除
$ git pull origin master 从默认分支下载
$ git branch -v 查看所有分支
$ git log --pretty=oneline 查看版本日志
$ git reset --hard HEAD^/HEAD^^/HEAD~100/2287b773d655 恢复指定的版本
$ git reflog 显示所有执行过的命令行
——————————————————————————————--
查看分支:git branch
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支:git checkout -b <name>
合并某分支到当前分支:git merge <name>
删除分支:git branch -d <name>