-
Notifications
You must be signed in to change notification settings - Fork 26
git tag remove #599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git tag remove #599
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -288,5 +288,15 @@ Hotfix 分支,Bug-fix,完成后删除 | |||||
|
|
||||||
| [Git及GitHub教程](https://www.githubs.cn/post/git-tutorial) | ||||||
|
|
||||||
|
|
||||||
| ### GIT 如何删除remote中所有tag | ||||||
|
|
||||||
|
|
||||||
| ``` | ||||||
| git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules | ||||||
|
||||||
| git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules | |
| git show-ref --tag | awk '{print ":" $2}' | xargs git push origin |
Copilot
AI
Nov 24, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description "删除本地所有tag" (Delete all local tags) is placed after the code block for deleting remote tags, which creates confusion. It should appear before its corresponding code block on line 299. The logical flow should be: description first, then the code block that implements that description.
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The section heading has an inconsistency in formatting. Looking at the document structure, this new section should be placed before "## 参考教程" (line 287) rather than after it. The "参考教程" section appears to be a closing reference section, and new content sections should come before it.