-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
85 lines (67 loc) · 1.74 KB
/
.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
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
### Pre-emptive ignores
*.code-workspace
*.dll
*.exe
*.ico
*.mdmp
# Compiled content
*.bin
/content/*
!/content/hlvr_addons/
/content/hlvr_addons/*
!/content/hlvr_addons/vending_shop
/content/_toolsautosave
/content/core
/content/hlvr/
/content/hlvr/*.dmx
/content/hlvr_addons/**/_bakeresourcecache
/content/hlvr_addons/**/_vrad3
addoninfo.txt
/game/*
/game/*.txt
/game/_toolsettings
/game/bin/win64
/game/bin/linuxsteamrt64
!/game/hlvr_addons/
# /game/hlvr_addons/
/game/hlvr_addons/*
!/game/hlvr_addons/vending_shop
/game/hlvr_addons/**/_bakeresourcecache
/game/hlvr_addons/**/_buildcubemaps
/game/hlvr_addons/**/_vrad3
/game/hlvr_addons/**/save/*
/game/hlvr_addons/**/tools_thumbnail_cache.bin
/game/hlvr_addons/hlvrcfg.cfg
/game/hlvr_addons/vpks
!/game/hlvr_addons/vending_shop/maps
### Addons distributed with the tools
### All users have these addons, they're readonly anyway so they shouldn't be tracked.
/game/hlvr_addons/audio_new_sound
/game/hlvr_addons/addon_template
/game/hlvr_addons/custom_character
/content/hlvr_addons/addon_template
/content/hlvr_addons/audio_new_sound
/content/hlvr_addons/custom_character
### Per user ignores
### Have multiple contributors to your map?
### Need to ignore addons not relevant to the project?
### This is where these go. Examples below.
### fictional user A
# /content/
/content/hlvr_addons/soundtest
# /game/
/game/hlvr_addons/soundtest
### fictional user B
# /content/
/content/hlvr_addons/animtest
# /game/
/game/hlvr_addons/animtest
### fictional user C
## he thought it would be a good idea to include some folders in his HLA install. He's an asshole.
# /
/.external
/.extracted
## Ignore the bakeresourcecache and vrad3 folders for all addons
# /game/**/**/_bakeresourcecache
# /game/**/**/_vrad3
*.vsvg_c