-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbatch_commits.sh
More file actions
executable file
·126 lines (119 loc) · 5.33 KB
/
batch_commits.sh
File metadata and controls
executable file
·126 lines (119 loc) · 5.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/bin/bash
cd ~/biud-contribution
make_commit() {
echo "$2" > "frontend/src/components/$1"
git add -A
git commit -m "$3" --allow-empty-message 2>/dev/null || git commit --amend --no-edit 2>/dev/null
}
# Continue building the cat - commits 22-30
cat > frontend/src/components/FloatingCat.tsx << 'EOF'
'use client';
export default function FloatingCat() {
return (
<div className="animate-float relative w-32 h-32">
<div className="absolute inset-0 bg-cat-orange rounded-full">
<div className="absolute top-8 left-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-8 right-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
</div>
</div>
);
}
EOF
git add -A && git commit -m "feat(ui): add cat pupils"
cat > frontend/src/components/FloatingCat.tsx << 'EOF'
'use client';
export default function FloatingCat() {
return (
<div className="animate-float relative w-32 h-32">
<div className="absolute inset-0 bg-cat-orange rounded-full">
<div className="absolute top-8 left-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-8 right-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-14 left-1/2 -translate-x-1/2 w-3 h-2 bg-cat-nose rounded-full"></div>
</div>
</div>
);
}
EOF
git add -A && git commit -m "feat(ui): add cat nose"
cat > frontend/src/components/FloatingCat.tsx << 'EOF'
'use client';
export default function FloatingCat() {
return (
<div className="animate-float relative w-32 h-32">
<div className="absolute inset-0 bg-cat-orange rounded-full">
<div className="absolute top-8 left-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-8 right-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-14 left-1/2 -translate-x-1/2 w-3 h-2 bg-cat-nose rounded-full"></div>
<div className="absolute top-16 left-1/2 -translate-x-1/2 w-1 h-2 bg-cat-whisker rounded-t-full"></div>
</div>
</div>
);
}
EOF
git add -A && git commit -m "feat(ui): add cat mouth line"
cat > frontend/src/components/FloatingCat.tsx << 'EOF'
'use client';
export default function FloatingCat() {
return (
<div className="animate-float relative w-32 h-32">
<div className="absolute inset-0 bg-cat-orange rounded-full">
<div className="absolute top-8 left-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-8 right-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-14 left-1/2 -translate-x-1/2 w-3 h-2 bg-cat-nose rounded-full"></div>
<div className="absolute top-16 left-1/2 -translate-x-1/2 w-1 h-2 bg-cat-whisker rounded-t-full"></div>
{/* Whiskers left */}
<div className="absolute top-14 left-2 w-6 h-[1px] bg-cat-whisker -rotate-12"></div>
<div className="absolute top-15 left-2 w-6 h-[1px] bg-cat-whisker"></div>
<div className="absolute top-16 left-2 w-6 h-[1px] bg-cat-whisker rotate-12"></div>
</div>
</div>
);
}
EOF
git add -A && git commit -m "feat(ui): add left whiskers"
cat > frontend/src/components/FloatingCat.tsx << 'EOF'
'use client';
export default function FloatingCat() {
return (
<div className="animate-float relative w-32 h-32">
<div className="absolute inset-0 bg-cat-orange rounded-full">
<div className="absolute top-8 left-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-8 right-6 w-4 h-4 bg-white rounded-full">
<div className="absolute top-1 left-1 w-2 h-2 bg-cat-eye rounded-full"></div>
</div>
<div className="absolute top-14 left-1/2 -translate-x-1/2 w-3 h-2 bg-cat-nose rounded-full"></div>
<div className="absolute top-16 left-1/2 -translate-x-1/2 w-1 h-2 bg-cat-whisker rounded-t-full"></div>
{/* Whiskers left */}
<div className="absolute top-14 left-2 w-6 h-[1px] bg-cat-whisker -rotate-12"></div>
<div className="absolute top-15 left-2 w-6 h-[1px] bg-cat-whisker"></div>
<div className="absolute top-16 left-2 w-6 h-[1px] bg-cat-whisker rotate-12"></div>
{/* Whiskers right */}
<div className="absolute top-14 right-2 w-6 h-[1px] bg-cat-whisker rotate-12"></div>
<div className="absolute top-15 right-2 w-6 h-[1px] bg-cat-whisker"></div>
<div className="absolute top-16 right-2 w-6 h-[1px] bg-cat-whisker -rotate-12"></div>
</div>
</div>
);
}
EOF
git add -A && git commit -m "feat(ui): add right whiskers"
echo "Batch 1 complete"
git log --oneline | wc -l