2015-02-24 21:13

[Git] 取得最新的版號日期

git log -1 --date=short --format='%cd %h'
# 2015-02-13 e396510

git log -1 --date=short --format=%cd
# 2015-02-13

git log -1 --format=%h
# e396510

-1
只顯示第一筆 (筆數)

--date=short
短的日期格式

--format=%cd
commit date

--format=%h
短版的 commit hash

參考資料:git-log(1) Manual Page

0 回應: