Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 216 Bytes

noted.md

File metadata and controls

17 lines (13 loc) · 216 Bytes

NOTES

personal notes

Github

create new tag version and push to repo

git tag -a v0.1.0 -m "v0.1.0"
git push origin --tags

update tag with latest commit

git tag -f mytagname
git push -f --tags