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 *.Makefile | 7 *.Makefile |
8 *.mk | 8 *.mk |
| 9 *.o |
9 *.pyc | 10 *.pyc |
10 *.pyc-2.4 | 11 *.pyc-2.4 |
11 *.pyo | 12 *.pyo |
12 *.pyo-2.4 | 13 *.pyo-2.4 |
13 *.rules | 14 *.rules |
14 *.sln | 15 *.sln |
15 *.slo | 16 *.slo |
16 *.swp | 17 *.swp |
17 *.vcproj | 18 *.vcproj |
18 *.xcodeproj/ | 19 *.xcodeproj/ |
(...skipping 22 matching lines...) Expand all Loading... |
41 /tools/SRC/ | 42 /tools/SRC/ |
42 | 43 |
43 # These directories only show up if you have supplement.DEPS in your .gclient | 44 # These directories only show up if you have supplement.DEPS in your .gclient |
44 /private_tests/ | 45 /private_tests/ |
45 /private_tools/ | 46 /private_tools/ |
46 /supplement/ | 47 /supplement/ |
47 | 48 |
48 # These directories are created by running tests/spec2k/run_all.sh | 49 # These directories are created by running tests/spec2k/run_all.sh |
49 /tests/spec2k/bin/ | 50 /tests/spec2k/bin/ |
50 /tests/spec2k/[0-9][0-9][0-9].*/ | 51 /tests/spec2k/[0-9][0-9][0-9].*/ |
OLD | NEW |