-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Git tags should not be overwritten #195
Comments
It's been some time since I complained on the issue. Fortunately, since then we (Chorus One) have published a book on Open Source Engineering, where this particular problem is described. It's a good read, and I can recommend it to all blockchain engineers https://handbook.chorus.one/node-software/release-engineering.html#no-retagging |
I think we finally stopped doing this, we have new processes for releases if you'll look now, the last "latest" was three weeks ago and on top of that I have now deleted it ➜ allora-chain git:(dev) git push --delete origin latest
To github:allora-network/allora-chain
- [deleted] latest Thanks for flagging this |
Overwriting Git tags, also known as "re-tagging", is not the best idea.
This article has good explanation - https://git-scm.com/docs/git-tag#_on_re_tagging
Please don't use tags like
latest
. If you need a moving label for master branch, this is what Git branches are for.The text was updated successfully, but these errors were encountered: