Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 1 | syntax:glob |
Rob Pike | 188b2ac | 2010-02-03 20:12:39 -0800 | [diff] [blame] | 2 | .DS_Store |
Josh Goebel | d05fa26 | 2009-11-17 16:46:58 -0800 | [diff] [blame] | 3 | .git |
Russ Cox | b28e342 | 2010-02-09 13:18:51 -0800 | [diff] [blame] | 4 | .gitignore |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 5 | *.[568ao] |
| 6 | *.ao |
| 7 | *.so |
Russ Cox | eef3fbb | 2009-11-01 05:20:30 -0800 | [diff] [blame] | 8 | *.pyc |
| 9 | ._* |
| 10 | .nfs.* |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 11 | [568a].out |
Ian Lance Taylor | 49d4e8c | 2009-11-07 12:27:11 -0800 | [diff] [blame] | 12 | *~ |
| 13 | *.orig |
Russ Cox | 17fc373a | 2011-01-24 14:14:26 -0500 | [diff] [blame] | 14 | *.rej |
Hector Chu | aae5f91 | 2011-01-19 15:10:15 -0500 | [diff] [blame] | 15 | *.exe |
| 16 | .*.swp |
Ian Lance Taylor | 49d4e8c | 2009-11-07 12:27:11 -0800 | [diff] [blame] | 17 | core |
Nigel Tao | 8c6f997 | 2011-01-12 16:17:54 +1100 | [diff] [blame] | 18 | _cgo_* |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 19 | _obj |
| 20 | _test |
Alex Brainman | 1756b31 | 2010-10-04 14:56:44 +1100 | [diff] [blame] | 21 | _testmain.go |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 22 | y.tab.[ch] |
Russ Cox | da392d9 | 2010-08-18 10:08:49 -0400 | [diff] [blame] | 23 | doc/htmlgen |
Ian Lance Taylor | 31d7efd | 2011-01-31 13:21:44 -0800 | [diff] [blame^] | 24 | misc/cgo/life/run.out |
| 25 | misc/dashboard/builder/gobuilder |
| 26 | misc/goplay/goplay |
Russ Cox | da392d9 | 2010-08-18 10:08:49 -0400 | [diff] [blame] | 27 | src/Make.inc |
| 28 | src/cmd/6a/6a |
Ian Lance Taylor | 49d4e8c | 2009-11-07 12:27:11 -0800 | [diff] [blame] | 29 | src/cmd/?l/enam.c |
Christian Himpel | 2585888 | 2010-08-26 16:50:17 +1000 | [diff] [blame] | 30 | src/cmd/cc/y.output |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 31 | src/cmd/gc/builtin.c |
| 32 | src/cmd/gc/mkbuiltin1 |
| 33 | src/cmd/gc/opnames.h |
Ian Lance Taylor | 8d6054a | 2010-02-01 16:34:25 -0800 | [diff] [blame] | 34 | src/cmd/gc/y.output |
| 35 | src/cmd/gc/y1.tab.c |
| 36 | src/cmd/gc/yerr.h |
Russ Cox | 69039e5 | 2009-11-19 16:27:13 -0800 | [diff] [blame] | 37 | src/pkg/Make.deps |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 38 | src/pkg/exp/ogle/ogle |
David Symonds | 0ed728c | 2010-01-11 11:23:46 -0800 | [diff] [blame] | 39 | src/pkg/os/signal/unix.go |
Russ Cox | eef3fbb | 2009-11-01 05:20:30 -0800 | [diff] [blame] | 40 | src/pkg/runtime/*/asm.h |
Alex Brainman | 1820612 | 2010-04-26 22:49:14 -0700 | [diff] [blame] | 41 | src/pkg/runtime/goc2c |
Russ Cox | 0c3a93c | 2010-03-16 23:10:33 -0700 | [diff] [blame] | 42 | src/pkg/runtime/mkversion |
Ian Lance Taylor | 49d4e8c | 2009-11-07 12:27:11 -0800 | [diff] [blame] | 43 | src/pkg/runtime/runtime.acid.* |
Ian Lance Taylor | 31d7efd | 2011-01-31 13:21:44 -0800 | [diff] [blame^] | 44 | src/pkg/runtime/runtime_defs.go |
Russ Cox | 0c3a93c | 2010-03-16 23:10:33 -0700 | [diff] [blame] | 45 | src/pkg/runtime/version.go |
Ian Lance Taylor | 31d7efd | 2011-01-31 13:21:44 -0800 | [diff] [blame^] | 46 | src/pkg/unicode/maketables |
Russ Cox | 0c3a93c | 2010-03-16 23:10:33 -0700 | [diff] [blame] | 47 | src/pkg/github.com/ |
| 48 | src/pkg/*.googlecode.com/ |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 49 | test/pass.out |
| 50 | test/run.out |
| 51 | test/times.out |
Russ Cox | 766d042 | 2010-02-09 20:29:08 -0800 | [diff] [blame] | 52 | test/garbage/*.out |
Scott Lawrence | ebe837d | 2010-09-02 13:48:28 -0400 | [diff] [blame] | 53 | goinstall.log |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 54 | |
| 55 | syntax:regexp |
James Whitehead | 04cd381 | 2010-07-19 14:10:00 +1000 | [diff] [blame] | 56 | ^bin/ |
Russ Cox | 6d96b24 | 2009-10-22 11:07:39 -0700 | [diff] [blame] | 57 | ^pkg/ |
| 58 | ^src/cmd/(.*)/6?\1$ |
Ian Lance Taylor | 49d4e8c | 2009-11-07 12:27:11 -0800 | [diff] [blame] | 59 | ^.*/core.[0-9]*$ |