Skip to content

Commit 189fea1

Browse files
author
clearml
committed
Add .gitignore
1 parent 8b10ae4 commit 189fea1

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# These are some examples of commonly ignored file patterns.
2+
# You should customize this list as applicable to your project.
3+
# Learn more about .gitignore:
4+
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
5+
6+
# Node artifact files
7+
node_modules/
8+
dist/
9+
bootstrap/uv/
10+
bootstrap/git/
11+
build/
12+
*.egg-info/
13+
14+
# Compiled Java class files
15+
*.class
16+
17+
# Compiled Python bytecode
18+
*.py[cod]
19+
20+
# Log files
21+
*.log
22+
23+
# Package files
24+
*.jar
25+
26+
# Maven
27+
target/
28+
dist/
29+
30+
# JetBrains IDE
31+
.idea/
32+
33+
# Unit test reports
34+
TEST*.xml
35+
36+
# Generated by MacOS
37+
.DS_Store
38+
39+
# Generated by Windows
40+
Thumbs.db
41+
42+
# Applications
43+
*.app
44+
*.exe
45+
*.war
46+
47+
# Large media files
48+
*.mp4
49+
*.tiff
50+
*.avi
51+
*.flv
52+
*.mov
53+
*.wmv
54+
*.tar
55+
*.tar.gz
56+

0 commit comments

Comments
 (0)