| 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, or similar | 2 # from a 'git status' command, or similar |
| 3 | 3 |
| 4 # Ignore these filename patterns | 4 # Ignore these filename patterns |
| 5 *.cmd | 5 *.cmd |
| 6 *.gz | 6 *.gz |
| 7 *.nexe | 7 *.nexe |
| 8 *.nmf | 8 *.nmf |
| 9 *.o | 9 *.o |
| 10 *.pyc | 10 *.pyc |
| 11 *.pyo | 11 *.pyo |
| 12 | 12 |
| 13 # Ignore all hidden files | 13 # Ignore hidden coverage file. |
| 14 .* | 14 .coverage |
| 15 | 15 |
| 16 # Ignore all directories than contain these names | 16 # Ignore all directories than contain these names |
| 17 toolchain/ | 17 toolchain/ |
| 18 | 18 |
| 19 # Ignore these particular directories (relative to src directory) | 19 # Ignore these particular directories (relative to src directory) |
| 20 /build_tools/NSIS/ | 20 /build_tools/NSIS/ |
| 21 /build_tools/packages/ | 21 /build_tools/packages/ |
| 22 /build_tools/sdk_install_name.nsh | 22 /build_tools/sdk_install_name.nsh |
| 23 /build_tools/sdk_section.nsh | 23 /build_tools/sdk_section.nsh |
| 24 /build_tools/tests/apply_patch_test_archive/ | 24 /build_tools/tests/apply_patch_test_archive/ |
| 25 /build_tools/toolchain_archives/ | 25 /build_tools/toolchain_archives/ |
| 26 /chrome_binaries/ | 26 /chrome_binaries/ |
| 27 /debugger/NativeClientVSX/ | 27 /debugger/NativeClientVSX/ |
| 28 /debugger/nacl-gdb_server/x64/ | 28 /debugger/nacl-gdb_server/x64/ |
| 29 /experimental/webgtt/tests/nacltest/*.cc | 29 /experimental/webgtt/tests/nacltest/*.cc |
| 30 /staging/ | 30 /staging/ |
| OLD | NEW |