hpr2634 :: Git tag and metadata
An intro to git tags and how to view metadata about your Git repository.
Hosted by Klaatu on Thursday, 2018-09-06 is flagged as Clean and is released under a CC-BY-SA license.
git.
(Be the first).
The show is available on the Internet Archive at: https://archive.org/details/hpr2634
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:19:09
Introduction to Git.
Initiated by Klaatu, this open series introduces Git and the concepts behind its use in a collaborative environment.
Tag a commit:
$ git tag 0.1 $ git tag 0.1
Delete a tag:
$ git tag -d 0.1
Get the latest commit hash:
$ git rev-list --tags --max-count=1 94c5715694c5715687a962008dd71191460fc4e32370425a
Get any tag on a commit:
$ git describe --tags 94c5715 0.1