Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion source/WIKI_FAQ/06_git_flow/git_flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,5 +288,15 @@ Hotfix 分支,Bug-fix,完成后删除

[Git及GitHub教程](https://www.githubs.cn/post/git-tutorial)


### GIT 如何删除remote中所有tag
Copy link

Copilot AI Nov 24, 2025

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.

Copilot uses AI. Check for mistakes.


```
git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The git command appears to reference a specific remote name 'mist-modules' which seems overly specific for a general documentation guide. This should either use a generic placeholder like 'origin' or include an explanation that users should replace 'mist-modules' with their actual remote name.

Suggested change
git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules
git show-ref --tag | awk '{print ":" $2}' | xargs git push origin

Copilot uses AI. Check for mistakes.
```
Copy link

Copilot AI Nov 24, 2025

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.

Suggested change
```

Copilot uses AI. Check for mistakes.
删除本地所有tag
```
git tag -l | xargs git tag -d
```


Loading