# tools **Repository Path**: cshare/tools ## Basic Information - **Project Name**: tools - **Description**: 常用 函数 - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-23 - **Last Updated**: 2022-05-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### 添加文件或内容到暂存区 git add . git commit -m "mymodule: changes for v0.1.0" git tag v0.1.0 //Push the new tag to the origin repository. ### git push origin v0.0.1 git tag v1.2.3 -m "Release version 1.2.3" ### 删除本地 tag git tag -d tag-name ### 删除远程 tag git push origin :refs/tags/v0.0.1