摘要:
https://github.com/golang/go/wiki/Modules https://tonybai.com/2018/07/15/hello-go-module/ https://www.cnblogs.com/apocelipes/p/10295096.html 阅读全文
摘要:
git tag //查看tag git tag v1.0.0 c809ddbf83939a89659e51dc2a5fe183af384233 //在某个commit 上打tag git push origin v1.0.0 //push到远程 git tag -d v1.0.0 //本地删除tag git push origin :refs/tags/v1.... 阅读全文