目录
1--git init
2--git status
3--git add
4--git rm --cached
5--git commit
6--git reflog
7--git log
8--git reset --hard
1--git init
git init
git init 用于初始化本地库
2--git status
git status
git status 用于查看本地库状态
3--git add
git add file_name
git add 用于追踪本地文件(即将文件添加到暂存区)
4--git rm --cached
git rm --cached file_name
git rm --cached 用于删除已追踪的文件(即从暂存区移除文件,但本地工作区不会被删除)
5--git commit
git commit -m "first commit"
git commit 用于将暂存区的文件提交到本地库
6--git reflog
git reflog
git reflog 用于查看版本信息(内有精简版本号)
7--git log
git log
git log 用于查看详细日志(内有详细版本号)
8--git reset --hard
git reset --hard xxxxx # xxxxx表示版本号
git reset --hard 用于版本穿梭(切换版本号);切换版本号后,可以查看对应版本的文件(本地工作区的文件也会发生切换)
从本地工作区修改文件后,可以基于以下步骤重新提交新版本的文件:
git status # 查看哪些修改文件未被追踪
git add file_name # 重新追踪被修改的文件
git commit -m "second commit" # 再次将暂存区的文件提交到本地库