Git 基础命令

查看本地历史

使用 git reflog 查看本地操作历史,找到要回退的commit-id

bash 复制代码
git reflog

查看相对时间日志

bash 复制代码
git reflog --date=relative

优点‌:直观显示时间差(如"2小时前"),便于快速定位操作时间。

查看绝对时间日志

bash 复制代码
git reflog --date=iso

优点‌:精确到秒级时间戳,适用于需要精确时间的场景。

查看本地时间日志

bash 复制代码
git reflog --date=iso-local

说明‌:自动转换为本地时区时间。

回退到指定版本

使用 git reset --hard commit-id 回退到指定版本

bash 复制代码
git reset --hard commit-id
相关推荐
和你看星星2 天前
Git rerere:让重复冲突只解决一次
git
嘻嘻仙人5 天前
Ubuntu中 git上传自己的项目和二次上传一般流程
git·github
Patrick_Wilson5 天前
Squash Merge 的血缘陷阱:为什么删掉的代码又活了过来
前端·git·程序员
沉浸学习的匿名网友6 天前
什么是 .gitignore?为什么每个 Git 项目几乎都离不开它?
前端·git
深海鱼在掘金6 天前
Git 完全指南 —— 第3章:理解工作区、暂存区、版本库三个核心
git
江华森7 天前
Git 基础筑基:从原理到团队协作的全栈实战
git
JakeJiang7 天前
Git 必备命令指南:从日常高频到项目开发实战
git
叫我少年8 天前
Windows 中安装 git
git
深海鱼在掘金13 天前
Git 完全指南 —— 第1章:Git 概览与版本控制演进
git
noravinsc14 天前
关于Git Flow
git