OLD | NEW |
---|---|
1 # Ignore any python bytecode. | 1 # Ignore any python bytecode. |
2 *.pyc | 2 *.pyc |
3 | 3 |
4 # Ignore the batch files produced by the Windows bootstrapping. | 4 # Ignore the batch files produced by the Windows bootstrapping. |
5 /git-bash | 5 /git-bash |
6 /git.bat | 6 /git.bat |
7 /gitk.bat | 7 /gitk.bat |
8 /pylint.bat | 8 /pylint.bat |
9 /.pylint.d/ | 9 /.pylint.d/ |
10 /python | 10 /python |
(...skipping 25 matching lines...) Expand all Loading... | |
36 | 36 |
37 # Ignore ctags/cscope index files | 37 # Ignore ctags/cscope index files |
38 /TAGS | 38 /TAGS |
39 /cscope.files | 39 /cscope.files |
40 /cscope.in.out | 40 /cscope.in.out |
41 /cscope.out | 41 /cscope.out |
42 /cscope.po.out | 42 /cscope.po.out |
43 /tags | 43 /tags |
44 | 44 |
45 # Ignore unittest related files. | 45 # Ignore unittest related files. |
46 /testing_support/_rietveld | 46 /testing_support/_infra |
dnj (Google)
2016/05/09 23:13:10
I hate to say it, but I think we should leave the
| |
47 /tests/git-svn-submodule/ | 47 /tests/git-svn-submodule/ |
48 /tests/subversion_config/README.txt | 48 /tests/subversion_config/README.txt |
49 /tests/subversion_config/auth | 49 /tests/subversion_config/auth |
50 /tests/subversion_config/servers | 50 /tests/subversion_config/servers |
51 /tests/svn/ | 51 /tests/svn/ |
52 /tests/svnrepo/ | 52 /tests/svnrepo/ |
53 | 53 |
54 # Ignore intermediate isolate files | 54 # Ignore intermediate isolate files |
55 *.isolated | 55 *.isolated |
56 *.isolated.state | 56 *.isolated.state |
57 | 57 |
58 # Ignore recipe working directory. | 58 # Ignore recipe working directory. |
59 /.recipe_deps | 59 /.recipe_deps |
60 /infra/.recipe_deps | 60 /infra/.recipe_deps |
61 | |
62 # Ignore google AE downloaded for running testing only. | |
63 testing_support/google_appengine | |
OLD | NEW |