Skip to content

Commit

Permalink
[rename] 修改“清理本地引用”命令为“清理引用”命令 (#16)
Browse files Browse the repository at this point in the history
- rename: 修改“清理本地引用”命令为“清理引用”命令 
  上次修改 #13
- style: 修改注释位置
  • Loading branch information
DuckDuckStudio committed Jun 24, 2024
2 parents 652ad19 + ed9c125 commit 393e056
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AutoPack/AutoPack.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# 中文Git发行版自动打包程序
import os
import sys
import py7zr
Expand All @@ -7,6 +6,7 @@
import requests
import subprocess
from colorama import init, Fore
# 中文Git发行版自动打包程序

# --- init ---
init(autoreset=True)# 颜色显示
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ path\to\中文git.exe 命令
| 重置 (+保留更改(默认)/+删除更改) | reset (--mixed/--hard) | 把我推到过去,让我重来一次! |
| 公告 | / | 没人比我更懂中文Git |
| 差异 | diff | 找 不 同 ~ |
| 清理本地引用 | remote prune origin | 清除在远程仓库中不存在的分支 |
| 清理引用 | remote prune origin | 清除在远程仓库中不存在的分支 |

> [!NOTE]
> 对于`提交`命令,如果提交信息带空格请用`"`将提交信息括起来
Expand Down
2 changes: 1 addition & 1 deletion README_DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ path\to\中文git.exe 命令
| 重置 (+保留更改(默认)/+删除更改) | reset (--mixed/--hard) | 移动 HEAD 指针以及修改暂存区和工作目录中的文件状态 |
| 公告 | / | 显示中文Git版本的最新公告 |
| 差异 | diff | 显示文件间的差异 |
| 清理本地引用 | remote prune origin | 清除在远程仓库中不存在的分支 |
| 清理引用 | remote prune origin | 清除在远程仓库中不存在的分支 |

> [!NOTE]
> 对于`提交`命令,如果提交信息带空格请用`"`将提交信息括起来
Expand Down
2 changes: 1 addition & 1 deletion USER_HANDBOOK.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ pip install -r requirements.txt
| 重置 (+保留更改(默认)/+删除更改) | reset (--mixed/--hard) | 移动 HEAD 指针以及修改暂存区和工作目录中的文件状态 |
| 公告 | / | 显示中文Git版本的最新公告 |
| 差异 | diff | 显示文件间的差异 |
| 清理本地引用 | remote prune origin | 清除在远程仓库中不存在的分支 |
| 清理引用 | remote prune origin | 清除在远程仓库中不存在的分支 |

> [!NOTE]
> 对于`提交`命令,如果提交信息带空格请用`"`将提交信息括起来
Expand Down
2 changes: 1 addition & 1 deletion 中文git-pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def git_command(command, *args):
"还原": "revert",
"重置": "reset",
"差异": "diff",
"清理本地引用": "remote prune origin",
"清理引用": "remote prune origin",
# 可根据需要添加更多映射
}
if command == "帮助":
Expand Down
Binary file modified 中文git.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion 中文git.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def git_command(command, *args):
"还原": "revert",
"重置": "reset",
"差异": "diff",
"清理本地引用": "remote prune origin",
"清理引用": "remote prune origin",
# 可根据需要添加更多映射
}
if command == "帮助":
Expand Down

0 comments on commit 393e056

Please sign in to comment.