Cb-tumblebug: GitHub says v0.1.0-americano is the latest release

Created on 14 Jul 2020  路  3Comments  路  Source: cloud-barista/cb-tumblebug

Most helpful comment

v0.1.0-americano had a wrong commit which leads the latest release.

I changed the commit and date for v0.1.0-americano tag.
Please check, https://github.com/cloud-barista/cb-tumblebug/releases/tag/v0.1.0-americano

Now, the latest release bug has been resolved.

FYI : procedure to change commit and date for an existing tag. (cf: @jihoon-seo, @powerkimhub)

  1. git show-ref --tags
    // check existing tags
  2. git log
    // check commit log to find a target commit
  3. git checkout c6b6d73
    // checkout to the target commit
  4. GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag -a v0.1.0-americano -m "v0.1.0-americano" -f
    // retag for a target tag with the target commit with the force option ("-f")
  5. git checkout v0.1.0-americano
    // checkout to the target tag
  6. git log
    // check the target commit is HEAD
  7. git push upstream v0.1.0-americano -f
    // push the changed tag to upstream with the force option ("-f")

All 3 comments

Issue-Label Bot is automatically applying the label bug to this issue, with a confidence of 0.84. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

I am working on this

v0.1.0-americano had a wrong commit which leads the latest release.

I changed the commit and date for v0.1.0-americano tag.
Please check, https://github.com/cloud-barista/cb-tumblebug/releases/tag/v0.1.0-americano

Now, the latest release bug has been resolved.

FYI : procedure to change commit and date for an existing tag. (cf: @jihoon-seo, @powerkimhub)

  1. git show-ref --tags
    // check existing tags
  2. git log
    // check commit log to find a target commit
  3. git checkout c6b6d73
    // checkout to the target commit
  4. GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag -a v0.1.0-americano -m "v0.1.0-americano" -f
    // retag for a target tag with the target commit with the force option ("-f")
  5. git checkout v0.1.0-americano
    // checkout to the target tag
  6. git log
    // check the target commit is HEAD
  7. git push upstream v0.1.0-americano -f
    // push the changed tag to upstream with the force option ("-f")
Was this page helpful?
0 / 5 - 0 ratings

Related issues

seokho-son picture seokho-son  路  3Comments

seokho-son picture seokho-son  路  3Comments

seokho-son picture seokho-son  路  5Comments

seokho-son picture seokho-son  路  3Comments

jihoon-seo picture jihoon-seo  路  4Comments