Date of snapshot

I have a clone of the openwrt repo.
I made an imagebuilder image that includes luci.
It says:
OpenWrt SNAPSHOT r13013-5f126c541a
Is there a way for me to get the date of that snapshot?

[user@dev openwrt]$ scripts/getver.sh  r13013
5f126c541a743e2ff5d8f406128d477ab5a509b4
[user@dev openwrt]$ git log 5f126c541a743e2ff5d8f406128d477ab5a509b4

commit 5f126c541a743e2ff5d8f406128d477ab5a509b4
Author: Hans Dedecker <dedeckeh@gmail.com>
Date:   Sat Apr 18 10:34:10 2020 +0200

    binutils: add ALTERNATIVES for strings (FS#3001)
    
    Don't move strings anymore to /bin/strings to avoid clash with
    busybox /usr/bin/strings but move it to /usr/bin/binutils-strings.
    Use ALTERNATIVES support to install it as /usr/bin/strings
    
    Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
3 Likes

Great, thanks.
What does getver.sh do?

Exactly what I posted. With no arguments it will return the current release identifier of your repo, such as `r13013-5f126c541a1. If you pass it the release number, it will return the commit associated with that release number