diff options
Diffstat (limited to '')
-rw-r--r-- | .gitignore | 32 |
1 files changed, 10 insertions, 22 deletions
@@ -3,35 +3,22 @@ | |||
3 | # Git should ignore. | 3 | # Git should ignore. |
4 | # | 4 | # |
5 | # Since we only care about the actual source code files, | 5 | # Since we only care about the actual source code files, |
6 | # all the artwork and libraries are ignored, as are the | 6 | # all the libraries are ignored, as are the files that |
7 | # files that are created when you compile. | 7 | # are created when you compile. |
8 | # | 8 | # |
9 | 9 | ||
10 | # ARTWORK | ||
11 | |||
12 | linden/LICENSE-logos.txt | ||
13 | linden/indra/newview/skins/*/textures/ | ||
14 | linden/indra/newview/skins/dark/ | ||
15 | linden/indra/newview/skins/gemini | ||
16 | linden/indra/newview/skins/default/html/btn_purplepill_bg.png | ||
17 | linden/indra/newview/skins/default/html/en-us/loading/sl_logo_rotate_black.gif | ||
18 | linden/indra/newview/skins/default/html/en-us/loading/Thumbs.db | ||
19 | linden/indra/newview/skins/default/html/en-us/loading/imprudence_loading.png | ||
20 | linden/indra/newview/skins/default/html/unabletoconnect.png | ||
21 | linden/indra/newview/res/ | ||
22 | linden/indra/newview/res-sdl/ | ||
23 | linden/indra/newview/app_settings/*.db2 | ||
24 | linden/indra/newview/app_settings/windlight/ | ||
25 | linden/indra/newview/cursors_mac/ | ||
26 | linden/indra/newview/viewer.icns | ||
27 | |||
28 | # LIBRARIES | 10 | # LIBRARIES |
29 | 11 | ||
30 | linden/LICENSES/ | 12 | # Thees two lines are a bit tricky. |
13 | # The ! syntax negates a pattern, | ||
14 | # but it needs a pattern, not just a directory. | ||
15 | # So turn the first line into a pattern for ! to negate. | ||
16 | linden/LICENSES/* | ||
17 | !linden/LICENSES/LICENSE-logos.txt | ||
18 | |||
31 | linden/LICENSE-libraries-*.txt | 19 | linden/LICENSE-libraries-*.txt |
32 | linden/libraries/ | 20 | linden/libraries/ |
33 | linden/indra/newview/app_settings/mozilla*/ | 21 | linden/indra/newview/app_settings/mozilla*/ |
34 | linden/indra/newview/fonts/ | ||
35 | linden/indra/newview/lib/ | 22 | linden/indra/newview/lib/ |
36 | linden/indra/newview/dbghelp.dll | 23 | linden/indra/newview/dbghelp.dll |
37 | linden/indra/newview/linux_tools/client-readme-voice.txt | 24 | linden/indra/newview/linux_tools/client-readme-voice.txt |
@@ -62,3 +49,4 @@ ChangeLog.txt | |||
62 | .DS_Store | 49 | .DS_Store |
63 | *.zip | 50 | *.zip |
64 | linden/indra/newview/mozilla-universal-darwin.tgz | 51 | linden/indra/newview/mozilla-universal-darwin.tgz |
52 | |||