https://stackoverflow.com/questions/4404172/how-to-tag-an-older-commit-in-git/21759466#2175946
- git checkout
<commit-SHA>
- GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag -a v1.0.1 -m "abcd"
- git checkout master
https://git-scm.com/docs/git-push#Documentation/git-push.txt-ltrepositorygt
- git push
<Github repo URL>
v1.0.1
https://github.com/madrecha/marwaridictionary
- git checkout 0a553f369ec9631abce7eb0b7c887b2cc3cfd5de
- GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag -a v1.0.0 -m "Init"
- git checkout master
- git push https://github.com/madrecha/marwaridictionary.git v1.0.0