-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommit_script.sh
More file actions
41 lines (40 loc) · 1.44 KB
/
commit_script.sh
File metadata and controls
41 lines (40 loc) · 1.44 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
git add package.json
git commit -m "Init: Package configuration"
git add .gitignore
git commit -m "Chore: Add gitignore"
git add tsconfig.json tsconfig.app.json tsconfig.node.json
git commit -m "Config: TypeScript setup"
git add vite.config.ts
git commit -m "Config: Vite setup"
git add index.html
git commit -m "Feat: Main HTML entry"
git add tailwind.config.js postcss.config.js
git commit -m "Config: Tailwind CSS"
git add src/index.css
git commit -m "Style: Base CSS"
git add src/main.tsx
git commit -m "Feat: React Application Entry"
git add public/
git commit -m "Assets: Public static files"
git add src/utils/shapes.ts
git commit -m "Feat: Shape generation utility"
git add src/utils/shapes.test.ts
git commit -m "Test: Unit tests for shapes"
git add src/materials/ParticleShader.ts
git commit -m "Feat: Custom Particle Shader"
git add src/components/HandTracker.tsx
git commit -m "Feat: MediaPipe HandTracker component"
git add src/components/ParticleSystem.tsx
git commit -m "Feat: Particle System logic"
git add src/components/Scene.tsx
git commit -m "Feat: 3D Scene composition"
git add src/App.tsx
git commit -m "Feat: App UI and Composition"
git add package-lock.json
git commit -m "Deps: Lockfile"
git add src/utils/shapes.ts
git commit -m "Refactor: Add DNA shape logic" --allow-empty
git add src/components/ParticleSystem.tsx
git commit -m "Feat: Integrate DNA and Pinch gestures" --allow-empty
git add README.md
git commit -m "Docs: Initial documentation"