git branch 查看所有的分支
git log 查看当前分支的历史记录
git log branch_name 查看该分支的历史记录
git log --graph --oneline --decorate branch_name 几个常用的选项
git status
git diff --stat
git diff --cached --stat
git add .
git add -A
git commit
git commit -m "summary_remark_message"
git branch new_branch_name 建立分支
git checkout branch_name 切换分支
git checkout -b new_branch_name 建立和切换分支
git clone 复制
git remote add 添加远程仓库
git push 推送到远程仓库
git pull 拉取远程仓库
git checkout -- file_name 恢复删除的文件
Git就像是一个小操作系统
Git就让我更有版本的概念