Git入门学习(二)
1.Git的三大分区
2.Git基础操作指令
-
添加工作区到暂存区,可直接用第二条命令,将所有文件加入暂存区
git add 文件名 git add .
-
提交暂存区到本地仓库
git commit -m "注释"
-
查看修改状态
git status
-
查看提交日志
git log git log [option]
- options
- --all 显示所有分支
- --pretty=oneline 提交信息显示为一行
- --abbrev-commit 使输出的commitid简短
- --graph 以图的形式显示
指令可以混合使用,如下:
git log --pretty=oneline --abbrev-commit --all
- options
-
版本切换
#首先通过git log获取对应版本的commitID #然后执行以下命令 git reset --hard commitID