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