sha256test.git  about / heads / tags
sha256 test repo
$ git log --pretty=format:'%h %s (%cs)%d'
2520c58 initial (2021-05-11)
	(HEAD -> dev)

$ git cat-file blob HEAD:README
test file

# heads (aka `branches'):
$ git for-each-ref --sort=-creatordate refs/heads \
	--format='%(HEAD) %(refname:short) %(subject) (%(creatordate:short))'
* dev          initial (2021-05-11)

# tags:
$ git for-each-ref --sort=-creatordate refs/tags \
	--format='%(refname:short) %(subject) (%(creatordate:short))'
# no tags, yet...

git clone https://yhbt.net/sha256test.git