标签:format 代码 set before 最新 div com 命令 size
repo forall -c ‘commitID=git log --before "2019-11-24 23:59" -1 --pretty=format:"%H"; git reset --hard $commitID‘
forall 操作分支中的所有仓库
-c 只操作当前分支
--before 早于指定时间点的提交记录
-1 只显示最近的1条记录(注意这是数字 1 ,如果要显示 2 条就写 2,以此类推)
"2017-03-17 07:00" 希望回退到的日期(时间点)
--pretty 以指定格式显示提交记录
%H 提交记录的hash值,即commit id
标签:format 代码 set before 最新 div com 命令 size
原文地址:https://www.cnblogs.com/tongyishu/p/11953593.html