2015-02-24 21:13

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

  1. git log -1 --date=short --format='%cd %h' 
  2. # 2015-02-13 e396510 
  3.  
  4. git log -1 --date=short --format=%cd 
  5. # 2015-02-13 
  6.  
  7. git log -1 --format=%h 
  8. # e396510 

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

--date=short
短的日期格式

--format=%cd
commit date

--format=%h
短版的 commit hash

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

0 回應: