常用命令
- 001
- 查看为提交的
- git status
- 添加单个文件到暂存区
- git add 路径
- 提交所有的
- git add .
- 查看提交本地的日志
- git log
- 查看为提交的
附加命令
- git branch -av
- 查看所有的分支
- *代表正在使用的分支
- HEAD -> codemap[查看正在使用的分支]
- git log -n1 --oneline
- 创建新分支
- git checkout -b NewBranchName
- 基于某次提交创建新分支
- 切换分支
- git checkout BranchName
- 分支展示
- codemap[负]
- master[主]
- 切换主分支报错:git checkout master
- error: you need to resolve your current index first .gitignore: needs merge
- 执行:git reset --merge