This commit is contained in:
Sahil Ahuja 2025-02-04 17:31:18 +05:30
parent 0b3f4afd4d
commit 5d3a8536f3

View File

@ -1,5 +1,16 @@
#!/bin/bash #!/bin/bash
## Creating new releases
# git add -A;
# git commit -m "<commit msg>"
# #Minor version
# git tag -a -m "<tag msg>" v1.0.1
# git push --follow-tags
# #Moving major version
# git tag -fa v1
# git push --tags -f
# https://gist.github.com/CSTDev/08c127680e3b5fae38c051da3e489351 # https://gist.github.com/CSTDev/08c127680e3b5fae38c051da3e489351
#get highest tag number containing at least 2 dots #get highest tag number containing at least 2 dots