OLD | NEW |
1 # This is a standard .gitignore file, used to exclude certain files | 1 # This is a standard .gitignore file, used to exclude certain files |
2 # from a 'git status' command and other similar commands. | 2 # from a 'git status' command and other similar commands. |
3 # Please keep each section in alphabetical order. | 3 # Please keep each section in alphabetical order. |
4 | 4 |
5 # Ignore these filename patterns | 5 # Ignore these filename patterns |
6 *~ | 6 *~ |
7 *.gypcmd | 7 *.gypcmd |
8 *.Makefile | 8 *.Makefile |
9 *.mk | 9 *.mk |
| 10 *.props |
10 *.pyc | 11 *.pyc |
11 *.pyc-2.4 | 12 *.pyc-2.4 |
12 *.pyo | 13 *.pyo |
13 *.pyo-2.4 | 14 *.pyo-2.4 |
14 *.rules | 15 *.rules |
| 16 *.sdf |
15 *.sln | 17 *.sln |
16 *.slo | 18 *.slo |
17 *.swp | 19 *.swp |
| 20 *.suo |
| 21 *.targets |
| 22 *.user |
18 *.vcproj | 23 *.vcproj |
| 24 *.vcxproj |
| 25 *.vcxproj.filters |
19 *.xcodeproj/ | 26 *.xcodeproj/ |
20 testserver.log | 27 testserver.log |
21 | 28 |
22 # Ignore these directories wherever they appear | 29 # Ignore these directories wherever they appear |
23 .cproject/ | 30 .cproject/ |
24 .project/ | 31 .project/ |
25 .pydevproject/ | 32 .pydevproject/ |
26 .settings/ | 33 .settings/ |
27 hg/ | 34 hg/ |
28 toolchain/hg-build/ | 35 toolchain/hg-build/ |
(...skipping 16 matching lines...) Expand all Loading... |
45 /supplement/ | 52 /supplement/ |
46 | 53 |
47 # These directories are created by running tests/spec2k/run_all.sh | 54 # These directories are created by running tests/spec2k/run_all.sh |
48 /tests/spec2k/bin/ | 55 /tests/spec2k/bin/ |
49 /tests/spec2k/[0-9][0-9][0-9].*/ | 56 /tests/spec2k/[0-9][0-9][0-9].*/ |
50 | 57 |
51 # These directories are created by pnacl/build.sh sync-sources | 58 # These directories are created by pnacl/build.sh sync-sources |
52 pnacl/build/ | 59 pnacl/build/ |
53 pnacl/git/ | 60 pnacl/git/ |
54 pnacl/src/ | 61 pnacl/src/ |
OLD | NEW |