diff --git a/nwb_linkml/src/nwb_linkml/providers/git.py b/nwb_linkml/src/nwb_linkml/providers/git.py index f7022b1..658c99e 100644 --- a/nwb_linkml/src/nwb_linkml/providers/git.py +++ b/nwb_linkml/src/nwb_linkml/providers/git.py @@ -165,11 +165,11 @@ class GitRepo: >>> # Check out a tag specifically >>> repo.tag = "2.6.0" >>> repo.tag - "2.6.0" + '2.6.0' >>> # Now check out a commit some number after the tag. - >>> repo.commit = "gec0a879" + >>> repo.commit = "8abafcd" >>> repo.tag - "2.6.0-5-gec0a879" + '2.5.0-4-g8abafcd' """ res = self._git_call('describe', '--tags')