摘要:
git tag <name>可以打一个标签 git tag 可以查看所有的标签 默认标签是打在最新提交的commit上的 如果忘记之前提交的打标签 我们可以:git log --pretty=oneline --abbrev-commit 然后:git tag 1.0.0.0 f52c633 标签不 阅读全文
摘要:
可以查看这个:https://stackoverflow.com/questions/44702757/how-to-remove-all-git-origin-and-local-tags 对于使用命令提示符的Windows: 删除本地标签: for /f "tokens=* delims=" % 阅读全文
摘要:
转载来自:https://blog.csdn.net/weixin_46288569/article/details/106582166 有时候,我们提交了一些隐私的数据例如密码等到 Github 仓库,就算更新了仓库文件,但依旧会在 commit 历史记录中保存这部分数据。这个时候,我们就需要一种 阅读全文