Arthur Besse to Programmer [email protected]English • 1 year agoZeroVer: Cutting-edge software versioning for minimalists0ver.orgmessage-square6fedilinkarrow-up156arrow-down14cross-posted to: [email protected][email protected][email protected]
arrow-up152arrow-down1external-linkZeroVer: Cutting-edge software versioning for minimalists0ver.orgArthur Besse to Programmer [email protected]English • 1 year agomessage-square6fedilinkcross-posted to: [email protected][email protected][email protected]
minus-square@[email protected]linkfedilinkEnglish32•1 year agoThe only version management I believe in is Nver. I write code once and then leave the project completely. Start with 0.0.1 and end with 0.0.1
minus-square@larslink2•edit-21 year agoBecause git doesn’t require, but could definitely benefit from, empty initial commits, my go-to is: git init git commit -m='🌳 root commit' --allow-empty git tag v0.0.0 -am='' git add -A git commit -m='✨ initial commit' git tag v0.0.1 -am='' which is completely Nver- and Y2K-compliant
The only version management I believe in is Nver.
I write code once and then leave the project completely. Start with 0.0.1 and end with 0.0.1
Because git doesn’t require, but could definitely benefit from, empty initial commits, my go-to is:
which is completely Nver- and Y2K-compliant