状态查看
git status
查看工作区、暂存区状态
添加
git add [file name]
将工作区的“新建/修改”添加到暂存区
提交
git commit -m "commit message" [file name]
将暂存区的内容提交到本地库
查看历史记录
git log
git reflog
[email protected]{移动到当前版本需要多少步}
前进后退
- 基于索引值操作[推荐]
git reset --hard [局部索引值]
git reset --hard a6ace91 - 使用^符号:只能后退
git reset --hard HEAD^
注:一个^表示后退一步,n 个表示后退 n 步 - 使用~符号:只能后退
git reset --hard HEAD~n
注:表示后退 n 步
原文地址:https://www.cnblogs.com/kbian/p/12327513.html
时间: 2024-09-29 23:30:39