git tag commit and push code example
Example 1: git create tag and push
git tag -a v1.4 -m "my version 1.4"
Example 2: git commit and push command
git: git add . git commit -m "$m" git push -u origin master
Example 3: how to push tag for a commit
git tag "tag_name" "commit_hash" # fill tag_name and commit_hash
git push --tags # to push created tag