-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·153 lines (136 loc) · 4.3 KB
/
Copy path.gitignore
File metadata and controls
executable file
·153 lines (136 loc) · 4.3 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# ============================================================
# Privacy safety net — THIS REPO IS PUBLIC
# ============================================================
# Documents and media are never part of the published site: course PDFs,
# lectures and readings are private, and personal files have drifted in here
# before (a vocab .xlsx into js/, an ebook into scripts/). Ignore these formats
# repo-wide so a stray `git add .` can't publish them. Nothing of these types
# has ever been committed, so this breaks nothing.
# To publish one deliberately, force it: git add -f <path>
*.pdf
*.docx
*.doc
*.epub
*.xlsx
*.xls
*.pptx
*.ppt
*.m4a
*.mp3
*.heic
# ============================================================
# Dependencies & build
# ============================================================
# Node.js dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Logs
logs/
*.log
*.log.*
# Build output
dist/
build/
# ============================================================
# OS & editor files
# ============================================================
# OS generated files
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.swp
*.swo
*.bak
# ============================================================
# Git & deploy
# ============================================================
# Git files
.git/
.vercel
# ============================================================
# Tooling
# ============================================================
# design-sync (claude.ai/design): staged scripts, generated bundle, machine state.
# The durable inputs under .design-sync/ (config.json, NOTES.md, conventions.md,
# previews/, overrides/) stay tracked.
.ds-sync/
ds-bundle/
.design-sync/.cache/
.design-sync/learnings/
.design-sync/node_modules
# Working docs (handoffs, plans, specs)
docs/
# ============================================================
# Posts & media
# ============================================================
# Media files
*.mov
*.mp3
# Forbidden post entries
/posts/entries/004-*.md
/posts/entries/010-*.md
/posts/entries/013-*.md
/posts/entries/015-*.md
/posts/entries/016-*.md
/posts/entries/018-*.md
/posts/entries/019-*.md
# ============================================================
# Course notes (notes/courses/)
# ============================================================
# Forbidden course materials
/notes/courses/*/*HW*
/notes/courses/*/*Book*
/notes/courses/*/*Exam*
/notes/courses/*/*Note*
/notes/courses/*/*code*/
/notes/courses/*/*lecture*
/notes/courses/*/*reading*
/notes/courses/*/*exercise*
/notes/courses/*/*syllabus*
/notes/courses/*/*recitation*
/notes/courses/*/*.pdf
/notes/courses/*/*/assets
# ...and the same source-material binaries at ANY depth — the single-level rules
# above miss subfolders like presentations/ or fordlandia/, which is how the
# course .pptx/.pdf slides slip in. Keep copyrighted materials out of the repo.
/notes/courses/*/**/*.pdf
/notes/courses/*/**/*.ppt
/notes/courses/*/**/*.pptx
/notes/courses/*/**/*.doc
/notes/courses/*/**/*.docx
/notes/courses/*/**/*.key
/notes/courses/*/**/assets/
# Saved practice-exam pages are copyrighted source material; the PDFs above are
# already ignored, so keep the accompanying HTML out too.
/notes/courses/*/**/*.html
# Local study material (practice exams/quizzes + personal review sheets) — kept
# out of the published site; not listed in any index.json.
/notes/courses/CSCI-UA-470/midterm/
/notes/courses/CSCI-UA-470/quiz/
/notes/courses/CSCI-UA-470/final/
# Exam-shell SOURCE must stay tracked. The "*Exam*" rule above ignores "exams"
# (core.ignorecase makes it case-insensitive), so re-include the dir and its
# contents. Built exams still land in the ignored study dirs above.
!/notes/courses/CSCI-UA-470/exams/
!/notes/courses/CSCI-UA-470/exams/**
# Practice question banks are personal study material too. Keep their source
# local even though the reusable exam-shell source above stays tracked.
/notes/courses/CSCI-UA-470/exams/data/
/notes/courses/CSCI-UA-470/exams/final.test.js
# Hidden courses
/notes/courses/FYSEM*
/notes/courses/EXPOS*
/notes/courses/J*
/notes/courses/CORE*
# Insufficient content
/notes/courses/CSCI-UA-101
/notes/courses/CSCI-UA-102
/notes/courses/MATH-UA-32*
/notes/courses/MATH-UA-148
# Haven't taken yet
/notes/courses/CSCI-UA-473
/notes/courses/CSCI-UA-474
/notes/courses/CSCI-UA-469