Opened 13 years ago
Closed 13 years ago
#6813 closed enhancement (fixed)
Optimize git log date retrieval in Makefile
Reported by: | craga89 | Owned by: | |
---|---|---|---|
Priority: | Milestone: | 1.4.3 | |
Component: | build | Version: | 1.4.2 |
Keywords: | gitlog date build | Cc: | |
Blocked by: | Blocking: |
Description
Current Makefile grabs the last commit date using a long-winded git/grep/sed chain.
DATE=git log -1 | grep Date: | sed 's/[^:]*: *//'
This can be retrieved much more easily by using gitlog's format option:
DATE=git log --pretty=format:'%ad' -1
http://github.com/Craga89/jquery/commit/5e7307dae91910f1c5cb937064bde9af780c8798
Note: See
TracTickets for help on using
tickets.
This is fixed in http://github.com/jquery/jquery/commit/4ec1b743a81256ae15907e46260cfc8edc6f06b8