| 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 | |
| 9 *.o | 8 *.o |
| 10 *.pyc | 9 *.pyc |
| 11 *.pyo | 10 *.pyo |
| 12 *.suo | 11 *.suo |
| 13 | 12 |
| 14 # Ignore all hidden files | 13 # Ignore all hidden files |
| 15 .* | 14 .* |
| 16 | 15 |
| 17 # Ignore all directories than contain these names | 16 # Ignore all directories than contain these names |
| 18 scons-out/ | 17 scons-out/ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 35 /out | 34 /out |
| 36 | 35 |
| 37 /visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/obj/ | 36 /visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/obj/ |
| 38 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn.vsmdi | 37 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn.vsmdi |
| 39 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/obj/ | 38 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/obj/ |
| 40 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/bin/ | 39 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/bin/ |
| 41 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/NativeClientVSAddIn.xml | 40 /visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/NativeClientVSAddIn.xml |
| 42 /visual_studio/NativeClientVSAddIn/UnitTests/obj/ | 41 /visual_studio/NativeClientVSAddIn/UnitTests/obj/ |
| 43 /visual_studio/NativeClientVSAddIn/TestResults/ | 42 /visual_studio/NativeClientVSAddIn/TestResults/ |
| 44 | 43 |
| 45 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/chrome_data | 44 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/ipch |
| 46 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/newlib | 45 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*.sdf |
| 47 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/win | 46 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*.opensdf |
| 48 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
ipch | 47 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/Debug |
| 49 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/Debug | 48 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/Release |
| 50 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/Release | 49 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/Debug |
| 51 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/NaCl64 | 50 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/Release |
| 52 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles/NaCl32 | 51 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/NaCl64 |
| 53 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles.sdf | 52 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/NaCl32 |
| 54 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/
hello_world_gles.opensdf | 53 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/chrome_data |
| 54 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/newlib |
| 55 /visual_studio/NativeClientVSAddIn/InstallerResources/examples/*/*/win |
| OLD | NEW |