zrhoffman opened a new issue, #13056: URL: https://github.com/apache/trafficserver/issues/13056
What I did: Ran ```shell git clone https://github.com/apache/trafficserver.git cd trafficserver git describe --long origin/9.2.x ``` Expected result: It outputs `9.2.13-0-g2c83b07b6` for commit 2c83b07b6 Actual result: ``` $ git describe --long origin/9.2.x 9.2.13-0-g5da4da7a5 ``` More info: 5da4da7a5 is unexpected, because 2c83b07b6 is the latest commit on the 9.2.x branch at the time of filing #13056. `git show 5da4da7a5` mentions `9.2.13-rc0`: ``` $ git show 5da4da7a5 tag 9.2.13-rc0 Tagger: ezelkow1 <[email protected]> Date: Mon Mar 30 14:20:18 2026 -0600 Release Candidate 9.2.13-rc0 -----BEGIN PGP SIGNATURE----- iQIyBAABCAAdFiEElnZxNIL5Jn4xrNGdRmN2b7bo5OMFAmnK2wIACgkQRmN2b7bo 5OMuTQ/zBMbRuy+YslOoICqqQ14xQE/PE+jheewljrFCjZ/MDgqvmQZMZ4zKKsE1 b0vmpDlAm+3GTCFePMldCPfrAyqOI26aFi3SYRMwUm3p9CDMA6ZfdH510YHkpVkq qLP9rwvrycA3VU/xgVuwivhl288aLnMILPQ12L/SdFUgQ7/b6d8WZSF2NIEewqXt PEVEnTonq2uRAArYK/0xkktl3xA1t9rjiywoAcxo+JMhUW0+caxPqO03GKO9zWzb lcuEfUSwZpHWl3yjSGDBEzjY5Ghfz7BUvISnFeLzHf0MHyLyFmc7327kRpqipymQ 0Evsbeb0hwYMvuaDq1Hnxfz30csbJI7i9wTLB+x5KRSt9ACUitDbzfY1mjVethsj 72d4qmD7xIISmJL5hSuqSBj/B6IBlFxWh+YyEcxYdTA7giGyajiiQSwMRaFc59/z QFTpWGV0ObDMlcytFQn06ufIKQXOYLHljzLeDPzfo/kfShgafilXot85uDDXi9rQ JuT+9X64FqJURfzL7oIcNS4+yQeIVrwGmdIpo420VGgHK/85X6/8mDXwwYK0cj0j dWiMU9poSM6tZIdxxr661j9yMA6OEkJvv65P0a6JIGoAfYKVbbcoKA9GiVQwlU/6 M/woyjN+mtvBCc1hsColhbQrPuCU343q6VoovmXosb7tehQ+FA== =yfWo -----END PGP SIGNATURE----- commit 2c83b07b60ec73e4aa48abc10e82b248e3f2a23b (tag: 9.2.13, origin/9.2.x) ``` Although a 5da4da7a5 commit does not seem to exist in the repo, it is in the reflog: ```shell $ git rev-list --objects -g --no-walk 5da4da7a5 -- 5da4da7a5cd9a1f472b55ff765be0de0078aeaf3 9.2.13-rc0 ``` Note that the 9.2.13-rc0 tag also does not exist, even though it was referenced there: ```shell $ git show 9.2.13-rc0 fatal: ambiguous argument '9.2.13-rc0': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]' ``` This is breaking Comcast's CI when trying to generate a build number for trafficserver RPMs built on the [9.2.x branch](https://github.com/apache/trafficserver/commits/9.2.x). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
