-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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 describe shows the wrong thing #1941
Comments
Apparently develop does not contain the most recent tags:
It makes sense in the context of
This allows one to introduce a monotically increasing component before the commit hash. It'd be quite easy too to modify the Makefile's COMMIT_HASH variable and handle the command's output appropriately. |
Do we achieve this by merging tagged releases back into develop? |
Yes, correct. We need to merge the tags back to develop |
git describe
shows the wrong thing
@alessio what will this achieve for us that is currently a pain point or what benefits will it provide us? |
alessio@bizet:~/.../github.com/cosmos/cosmos-sdk$ gaiacli version
0.24.2-461261a3 If we could rely on alessio@bizet:~/.../github.com/cosmos/cosmos-sdk$ gaiacli version
0.24.2-397-g461261a3 |
Merging the tagged release back into develop seems reasonable / like something we can do. |
We should always be merging tagged releases back to develop as part of gitflow. |
git describe
v0.18.0-rc0-608-g23e3d5ac
git describe --tags
is more accurate.cc @alessio
The text was updated successfully, but these errors were encountered: