-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
35 lines (31 loc) · 729 Bytes
/
.gitignore
File metadata and controls
35 lines (31 loc) · 729 Bytes
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
# Ignore all files in the image directory
# except for the .png files
image/*
# Allow .png files in the image directory
!image/*.png
# Ignore all files in the .vscode directory
# except for the settings.json file
.vscode/*
# Allow settings.json in the .vscode directory
!.vscode/settings.json
# Ignore all files in the .env directory
.env/*
# Allow .env files in the .env directory
!.env/*.env
# Ignore all files in the planner.md file
planner.md
# Ignore all .bat files
*.bat
# Ignore all .ps1 files
*.ps1
# Ignore all .sh files
*.sh
# allow debug_motorph.bat
!debug_motorph.bat
# allow test_motorph.bat
!test_motorph.bat
# allow test_motorph.bat
!test_motorph.bat
# Ignore all mcp.json files
mcp.json
.vscode/settings.json