Upload .gitignore with huggingface_hub
Browse files- .gitignore +54 -0
.gitignore
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# General
|
2 |
+
.DS_Store
|
3 |
+
.AppleDouble
|
4 |
+
.LSOverride
|
5 |
+
|
6 |
+
# Icon must end with two \r
|
7 |
+
Icon
|
8 |
+
|
9 |
+
# Thumbnails
|
10 |
+
._*
|
11 |
+
|
12 |
+
# Files that might appear in the root of a volume
|
13 |
+
.DocumentRevisions-V100
|
14 |
+
.fseventsd
|
15 |
+
.Spotlight-V100
|
16 |
+
.TemporaryItems
|
17 |
+
.Trashes
|
18 |
+
.VolumeIcon.icns
|
19 |
+
.com.apple.timemachine.donotpresent
|
20 |
+
|
21 |
+
# Directories potentially created on remote AFP share
|
22 |
+
.AppleDB
|
23 |
+
.AppleDesktop
|
24 |
+
Network Trash Folder
|
25 |
+
Temporary Items
|
26 |
+
.apdisk
|
27 |
+
|
28 |
+
# Byte-compiled / optimized / DLL files
|
29 |
+
__pycache__/
|
30 |
+
*.py[cod]
|
31 |
+
*$py.class
|
32 |
+
|
33 |
+
# C extensions
|
34 |
+
*.so
|
35 |
+
|
36 |
+
# Distribution / packaging
|
37 |
+
.Python
|
38 |
+
build/
|
39 |
+
develop-eggs/
|
40 |
+
dist/
|
41 |
+
downloads/
|
42 |
+
eggs/
|
43 |
+
.eggs/
|
44 |
+
lib/
|
45 |
+
lib64/
|
46 |
+
parts/
|
47 |
+
sdist/
|
48 |
+
var/
|
49 |
+
wheels/
|
50 |
+
share/python-wheels/
|
51 |
+
*.egg-info/
|
52 |
+
.installed.cfg
|
53 |
+
*.egg
|
54 |
+
MANIFEST
|