使用相对日期与git clone --shallow-since

时间:2017-06-30 16:45:47

标签: git

我可以在git clone --shallow-since=<date>中使用相对日期(例如...... one-year-ago}吗?

命令替换(例如$(one-year-ago-command)中的bashPowerShell中的`one-year-ago-command`bash)不是真正的替代选择,因为我使用{{ 1}}和cmd是a **中的痛苦。

1 个答案:

答案 0 :(得分:0)

是的,你可以这样做。它适用于您可以传递给的相同 <date> 格式,例如git log --since=<date>

例如:

git clone --shallow-since="1 week ago" <url>

这适用于 Git 版本 2.20.1。

另见: