Git 在特定日期提交
示例
git commit -m 'Fix UI bug' --date 2016-07-01
该--date参数设置作者日期。例如,此日期将出现在的标准输出中gitlog。
还要强制提交日期:
GIT_COMMITTER_DATE=2016-07-01 git commit -m 'Fix UI bug' --date 2016-07-01
date参数接受GNUdate支持的灵活格式,例如:
git commit -m 'Fix UI bug' --date yesterday git commit -m 'Fix UI bug' --date '3 days ago' git commit -m 'Fix UI bug' --date '3 hours ago'
当日期未指定时间时,将使用当前时间,仅日期将被覆盖。