Mystyc commited on
Commit
8583234
·
1 Parent(s): e2d23cd

chore: apply .gitignore (untrack ignored files)

Browse files
Files changed (1) hide show
  1. .gitignore +9 -0
.gitignore ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # di root repo lokal kamu
2
+ printf "__pycache__/\n*.pyc\n.venv/\n.env\n.env.*\n" >> .gitignore
3
+
4
+ # berhenti melacak file yang sudah terlanjur tercatat
5
+ git rm -r --cached __pycache__ 2>/dev/null || true
6
+ git rm --cached -r .venv 2>/dev/null || true
7
+ git add .gitignore
8
+ git commit -m "chore: add .gitignore & untrack caches"
9
+ git push origin main