forked from qoli/eisonAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean-git-cache.sh
More file actions
executable file
·49 lines (38 loc) · 1.4 KB
/
clean-git-cache.sh
File metadata and controls
executable file
·49 lines (38 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
# 顯示彩色輸出的函數
print_info() {
echo -e "\033[0;34m[INFO]\033[0m $1"
}
print_success() {
echo -e "\033[0;32m[SUCCESS]\033[0m $1"
}
print_error() {
echo -e "\033[0;31m[ERROR]\033[0m $1"
}
# 檢查是否在 Git 倉庫中
if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
print_error "當前目錄不是 Git 倉庫!"
exit 1
fi
print_info "開始清理 Git 快取..."
# 移除 fastlane 目錄
print_info "移除 fastlane 目錄..."
git rm -r --cached fastlane/ > /dev/null 2>&1
# 移除 Xcode 用戶數據
print_info "移除 Xcode 用戶數據..."
git rm -r --cached "*.xcuserstate" > /dev/null 2>&1
git rm -r --cached xcuserdata/ > /dev/null 2>&1
git rm -r --cached "*.xcodeproj/xcuserdata/" > /dev/null 2>&1
git rm -r --cached "*.xcodeproj/project.xcworkspace/xcuserdata/" > /dev/null 2>&1
# 移除 macOS 系統文件
print_info "移除 macOS 系統文件..."
find . -name ".DS_Store" -exec git rm --cached {} \; > /dev/null 2>&1
find . -name "._*" -exec git rm --cached {} \; > /dev/null 2>&1
# 重新應用 .gitignore
print_info "更新 .gitignore 追蹤..."
git add .gitignore
# 提交更改
print_info "創建提交..."
git commit -m "chore: remove sensitive files from git tracking"
print_success "清理完成!敏感文件已從 Git 追蹤中移除,但仍保留在本地。"
print_success "您可以使用 'git push' 推送這些更改到遠端倉庫。"