-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
51 lines (38 loc) · 804 Bytes
/
.gitignore
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
# Ignore all directories
*/
# Whitelist (un-ignore) the directories you want and their contents
!UI_tabs/
!utils/
!wiki_assets/
# Whitelist the specific files
!LICENSE
!README.md
!environment.yml
!linux_run.sh
!mac_run.sh
!requirements.txt
!run.bat
!webui.py
# The previous rules you wanted
# Ignore __pycache__ directories
__pycache__/
# Ignore .pyc files
*.pyc
# Ignore auto_configs/ directory
auto_configs/
# Ignore specific file
dataset_curation_path.txt
# Ignore fast_downloader_config/ directory
fast_downloader_config/
# Ignore all .csv files
*.csv
# Ignore all .parquet files
*.parquet
# Ignore all .html files
*.html
# Ignore all .json files globally
*.json
# Allow settings.json
!settings.json
# Allow .json files in utils/features/image_boards
!utils/features/image_boards/*.json