feat: add cyan

Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
This commit is contained in:
Xinwei Xiong(cubxxw-openim) 2023-07-07 22:13:55 +08:00
parent f4cef32b95
commit 94bc02caa2

View File

@ -87,23 +87,15 @@ print_color "Author: ${author}" "${PURPLE_PREFIX}"
# Print section separator
print_separator
# 获取变更的文件列表
file_list=$(git diff --name-status HEAD @{u})
added_files=$(grep -c '^A' <<< "$file_list")
modified_files=$(grep -c '^M' <<< "$file_list")
deleted_files=$(grep -c '^D' <<< "$file_list")
# 打印变更的文件统计
print_color "Added Files: ${added_files}" "${YELLOW_PREFIX}"
print_color "Modified Files: ${modified_files}" "${YELLOW_PREFIX}"
print_color "Deleted Files: ${deleted_files}" "${YELLOW_PREFIX}"
# 获取最近一次提交的摘要信息
commit_message=$(git log -1 --pretty=format:"%s")
# 打印提交的摘要信息
print_color "Commit Message: ${commit_message}" "${YELLOW_PREFIX}"
#
#printMessage "Running the Flutter analyzer"
#flutter analyze