> - version: doesn't make sense in git, would it be the hash? what does > that tell me?
"Version" is not a git-native concept. Semantic versioning is an end-developer convention, not a "text history tracking tool" issue. https://semver.org/ Note that items 9 and 10 in that list permit including the git hash (automatic) as well as the declared version. I have seen scripts that automatically increment a sequential number with each commit, so you would have something like x.y.z-seq-hash -- so you have a declared version, the "build number", and the exact git commit. A simple change to "x.y.z+seq-hash" (note the plus sign) designates "release version" instead of pre-release version. --- Entertaining minecraft videos http://YouTube.com/keybounce -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
