我想在AOSP(android開源項目)的某個日期之前獲得所有提交。
我發現我可以用git的命令做到這一點:
git log --before="2011-12-01"
一些提交日期之前的Git日誌
但它顯示我
此外,我發現,我只能author date
(當補丁或更改上傳買不合並/更改日期)得到我需要在明年git
命令日期:
git log --pretty=format:"%cd"
I'T將顯示commit date
。
而問題是:
如何獲得git登錄前一些commit date
?
讓您的閱讀[爲git的日誌手冊頁]( https://www.kernel.org/pub/software/scm/git/docs/git-log.html),然後嘗試'--pretty = short'? – RedX
@RedX是的,但我沒有看到 git log --before =「2011-12-01」--pretty = format:「%ad」 git log --before =「2011-12-01」 --pretty = format:「%cd」 – Arseniy
那麼怎麼樣:'git log --before =「2011-12-01」--pretty = short'? – RedX