-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (39 loc) · 1.31 KB
/
Copy path.gitignore
File metadata and controls
45 lines (39 loc) · 1.31 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
# =====================================================================
# Protective .gitignore
#
# This Git repository's root is the user's HOME directory
# (C:\Users\Steve). To prevent accidentally committing personal data,
# secrets, registry hives, browser profiles, etc., we IGNORE EVERYTHING
# by default and then explicitly UN-IGNORE only the project files.
#
# To track a new file, add a matching "!path" line below.
# =====================================================================
# Ignore everything, at every directory level.
*
# --- always keep these ---
!.gitignore
!README.md
# --- shared Claude Code working rules (folder in, ONLY this one file) ---
# NOTE: never whitelist other .claude/ contents — they hold auth tokens.
!.claude/
!.claude/CLAUDE.md
# --- MMBasic / PicoW program sources (repo root) ---
!AnalogClock.bas
!LCD_Life.bas
!PicoScope.bas
!TwoTrace.bas
!PicoWClockDST.bas
!PicoWeather.bas
# --- serial tooling (allow the folder, then only these scripts) ---
!tools/
!tools/xmodem_send.py
!tools/xmodem_recv.py
!tools/serial_script.py
!tools/start_program.py
!tools/validate_run.py
# --- ESP32-S3 MicroPython clock+weather (NEVER track secrets.py / key.pem) ---
!ESP32-S3/
!ESP32-S3/esp32s3_clock_weather.py
!ESP32-S3/esp32s3_weather_https.py
!ESP32-S3/secrets_example.py
!ESP32-S3/README.md