Git 在特定日期提交
示例
git commit -m 'Fix UI bug' --date 2016-07-01
该--date参数设置作者日期。例如,此日期将出现在的标准输出中git log。
还要强制提交日期:
GIT_COMMITTER_DATE=2016-07-01 git commit -m 'Fix UI bug' --date 2016-07-01
date参数接受GNU date支持的灵活格式,例如:
git commit -m 'Fix UI bug' --date yesterdaygit commit -m 'Fix UI bug' --date '3 days ago'
git commit -m 'Fix UI bug' --date '3 hours ago'
当日期未指定时间时,将使用当前时间,仅日期将被覆盖。
以上是 Git 在特定日期提交 的全部内容, 来源链接: utcz.com/z/334570.html