---恢复内容开始---
# 基本命令 1. 版本回退: git reset --hard HEAD^|HEAD^^|HEAR~100 2. 版本查看 git log --pretty=online 3. 版本历史操作记录,用来查看不存在的版本: git reflog 4. 暂存区是add之后,未使用commit命令的阶段。 5. git checkout -- 文件名,丢弃工具区的修改,必须有--,否则该命令变为切换分支的命令 6. 当你add之后,想要撤销某个文件,让他回到工作区,git reset HEAD分支管理
- 创建分支: git checkout -b <branch_name>, 创建新的分支,并且切换,等同于 git branch
git checkout - 查看分支: git branch
- 切换分支: git checkout <branch_name>
- 合并分支: git merge <branch_name>
- 删除分支: git branch -d <branch_name>
- 暂存,git stage , git stage list ,git stage apply ,git stage pop, git stage pop