From: jfbu <jf...@us...> - 2024-08-06 07:39:10
|
I git cloned again with https://repo.or.cz/docutils.git not git protocol and got (as expected) the same result. Notice that ab29cf78ae24a9 is indeed the doctuils-0.21.2 tag but it is not the commit or one of the commits in recent history referring to 0.21.2 release. ~~~ $ git log --oneline --grep 0.21.2 0353066fb Fix headers for release 0.21.2 f344d4daf releasing 0.21.2 323957acb Version 0.21.2 6729e38e3 version 0.21.2b.dev ~~~ It is as if all `docutils-...` tags refer to some other branch, and the origin remote does contain many branches other than master but none has a name which seems encouraging to me to try out. The 0.21.2 release seems to about 200 commits back in history, not 9344 commits. So we can't use `docutils-...` prefixed tags for bisecting. If I count commits separating docutils-0.21.2 from master HEAD: ~~~ $ git log --oneline docutils-0.21.2...master | wc -l 15385 ~~~ It looks as if all these tags are on a separate "release" branch which I do not see ats available at my check out. When I diff between master HEAD and such tags, I see in particular that there is one less layer of `docutils/` nesting. Maybe there is some business of a git sub-module (but that exceeds greatly my git knowledge). In brief the tags seem to belong to some other `.git` structure but somehow are visible from the public svn-to-git mirror repo. --- **[bugs:#492] Git repo lacking tags** **Status:** open **Created:** Mon Aug 05, 2024 09:47 AM UTC by jfbu **Last Updated:** Mon Aug 05, 2024 09:22 PM UTC **Owner:** nobody I updated my docutils git clone (from `url = git://repo.or.cz/docutils.git`), did `git pull --tags` which fetched tags such as `docutils-0.21.2`. Then I started `git bisect` to research some issue but could not understand HEAD was seemingly thousands of commits ahead of `docutils-0.21.2`. In output of `git log --oneline` I indeed found much more recent releases, but none of these releases have git tags (which would normally show here). ~~~ 4530fc43e FIX test no longer break on missing pil f344d4daf releasing 0.21.2 323957acb Version 0.21.2 af87152e6 stale comment aebceea6e Reconcile Docutils DTD and Document Tree documentation. 76ae9eec4 man utf8 output uses normal "-" char(45) 5aaa62b8e Uncomment classifiers for Georgian and Catalan (Valencian) languages. fa86933d7 Small test speedup/simplification. d10ff72f9 Make effect of centre-aligning figures visible in functional HTML text. 8218b2e47 Avoid dependency of functional tests on PIL/Pillow. e6069cf76 Prevent test failure due no Pillow or Pillow version above 10.3. fb9a9421d Remove duplicate test case. d3fdd821f Do not exclude "test/functional/output/" from the source package. e85d5159f Fix test failure if tests are started from docutils/docutils. 46db2819c Fix test failure with pygments >= 2.14. 6729e38e3 version 0.21.2b.dev f83dac7cf release 0.21.1 64d4b0dd8 rough log of trying to install sdist from test.pypi 64733c201 Release 0.21.1 (sdist rerelease) ~~~ I am surely missing the obvious... (I dimly remember years ago having had already problems with tags on this project, which I think was simply due to me not having done `git pull --tags`...). --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/bugs/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/bugs/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |